Mathematics Previous page   Next Page

Singular Value Decomposition

A singular value and corresponding singular vectors of a rectangular matrix A are a scalar sigma and a pair of vectors u and v that satisfy

With the singular values on the diagonal of a diagonal matrix sigma and the corresponding singular vectors forming the columns of two orthogonal matrices U and V, we have

Since U and V are orthogonal, this becomes the singular value decomposition

The full singular value decomposition of an m-by-n matrix involves an m-by-m U, an m-by-n sigma, and an n-by-n V. In other words, U and V are both square and sigma is the same size as A. If A has many more rows than columns, the resulting U can be quite large, but most of its columns are multiplied by zeros in sigma. In this situation, the economy sized decomposition saves both time and storage by producing an m-by-n U, an n-by-n sigma and the same V.

The eigenvalue decomposition is the appropriate tool for analyzing a matrix when it represents a mapping from a vector space into itself, as it does for an ordinary differential equation. On the other hand, the singular value decomposition is the appropriate tool for analyzing a mapping from one vector space into another vector space, possibly with a different dimension. Most systems of simultaneous linear equations fall into this second category.

If A is square, symmetric, and positive definite, then its eigenvalue and singular value decompositions are the same. But, as A departs from symmetry and positive definiteness, the difference between the two decompositions increases. In particular, the singular value decomposition of a real matrix is always real, but the eigenvalue decomposition of a real, nonsymmetric matrix might be complex.

For the example matrix

the full singular value decomposition is

You can verify that U*S*V' is equal to A to within roundoff error. For this small problem, the economy size decomposition is only slightly smaller.

Again, U*S*V' is equal to A to within roundoff error.


Previous page  Eigenvalues Polynomials and Interpolation Next page

© 1994-2005 The MathWorks, Inc.