Exercise 6.3.5

Find singular value decomposition of the matrix

A = [23 0 2 ].

Use it to find

a)
max ||x||1||Ax|| and the vector where the maximum is attained;
b)
max ||x||=1||Ax|| and the vector where the minimum is attained;
c)
the image A(B) of the closed unit ball in 2, B = {x 2 : ||x|| 1}. Describe A(B) geometrically.

Answers

Solution (The SVD steps are ignored here.)

a) Suppose A = WΣV , then (Ax,Ax) = xAAx = xV Σ2V x = (V x)Σ2(V x). Define y = [y1y2] = V x. Because V is orthogonal, then y also lies in the unit ball. Thus

(Ax,Ax) = yΣ2y = [y1y2 ] [ 160 0 1 ] [y1 y2 ] = 16y12 + y 22.

y12 + y22 1. Hence the maximum is 16 attained when y = [10]. Corresponding x can be solved by x = V y.

b) Similarly, the minimum is 1 attained when y = [01].

c) Ellipse.

User profile picture
2018-11-29 00:00
Comments