deepdream of
          a sidewalk
Show Question
Math and science::Algebra

Singular value decomposition

Singular value decomposition (SVD)

Let A be an m×n matrix. SVD decomposes A as:

A=UΣVT

where U and V are orthogonal matrices and Σ is a diagonal matrix with non-negative real numbers on the diagonal. The diagonal entries of Σ are called the singular values of A.

Assuming this decomposition of A is possible, how can we find U, Σ, and V?

What is a geometric interpretation of the SVD?


Finding U, Σ, and V

Let A be an m×n matrix. Then:

ATA=(VΣTUT)(UΣVT)=VΣ2VT

So, V is the othogonal eigenvector matrix that diagonalizes the symmetric matrix ATA.

Similarly:

AAT=(UΣVT)(VΣTUT)=UΣ2UT

So, U is the orthogonal eigenvector matrix that diagonalizes the symmetric matrix AAT.

In both cases, we can read off Σ by taking the square root of the diagonal entries of the diagonalized ATA or AAT.

Geometric interpretation