Exercise 1.8.8

Answers

For A = [020 0 0 3 000 ], we have $A^TA =

[000 0 4 0 009 ]

$ and AAT = [400 0 9 0 000 ].

We compute the eigen values as λ1 = 0,λ2 = 4,λ3 = 9, so we have singular values as σ1 = 0,σ2 = 2,σ3 = 3.

Let’s now find the eigenvectors of ATA with eigenvalues 4,9: x1 = [0 1 0 ]and x2 = [0 0 1 ]

Choose v1 = x2 = [0 0 1 ] and σ1 = λ2 = 3, we have u1 = Av1 σ1 = [0 1 0 ].

Choose v2 = x1 = [0 1 0 ] and σ1 = λ1 = 2, we have u2 = Av2 σ2 = [1 0 0 ].

So we have right singular matrix: V = [001 0 1 0 100 ], and left singular matrix: U = [010 1 0 0 001 ] note we picked the third singular vector to be perpendicular to other two singular vectors.

And we have Σ = [300 0 2 0 000 ]

It can be shown that A = UΣV T

User profile picture
2020-03-20 00:00
Comments