Singular value decomposition
Singular value decomposition (SVD)
Let A be an \( m \times n \) matrix. SVD decomposes \( A \) as:
where \( U \) and \( V \) are orthogonal matrices and \( \Sigma \) is a diagonal matrix with non-negative real numbers on the diagonal. The diagonal entries of \( \Sigma \) are called the singular values of \( A \).
Assuming this decomposition of \( A \) is possible, how can we find \( U \), \( \Sigma \), and \( V \)?
What is a geometric interpretation of the SVD?
Finding \( U \), \( \Sigma \), and \( V \)
Let \( A \) be an \( m \times n \) matrix. Then:
So, \( V \) is the othogonal eigenvector matrix that diagonalizes the symmetric matrix \( A^T A \).
Similarly:
So, \( U \) is the orthogonal eigenvector matrix that diagonalizes the symmetric matrix \( A A^T \).
In both cases, we can read off \( \Sigma \) by taking the square root of the diagonal entries of the diagonalized \( A^T A \) or \( A A^T \).