The Master Decomposition
Eigenvalues need square matrices and can be complex; SINGULAR VALUES exist for every matrix and are always real and nonnegative: ( is symmetric positive semidefinite, so this is legal).
Meaning: is the largest stretch applies to any unit vector; the number of nonzero 's is the RANK; and equals the sum of squares of all entries. The unit circle maps to an ellipse with semi-axes — every matrix, however ugly, is geometrically just rotate–stretch–rotate.
The singular value decomposition writes : a sum of RANK-ONE layers, ordered by importance . The Eckart–Young theorem: keeping just the first layers gives the BEST possible rank- approximation, with error exactly .
This is data compression as a theorem: an image is a matrix, most of its singular values are tiny, and storing a few layers reproduces it almost perfectly. Principal component analysis is the same truncation applied to centered data — "find the directions that matter, drop the rest."
For symmetric positive-definite matrices, singular values ARE the eigenvalues; for the diagonal matrix they are the absolute values — stretch has no sign. For a genuinely non-symmetric matrix the two sets differ, and the singular values are the honest geometry: a matrix with all eigenvalues zero (nilpotent) can still stretch vectors enormously, and its says by how much.
Find the singular values of . Work: rows are proportional — rank , so and : .
Structure check: , and ✓ — a rank-one matrix's only singular value is the product of the lengths of its two factors.
Proofs & Why It Matters
Maximize over unit vectors . That is a quadratic form in the symmetric matrix , and the previous topic proved its maximum on the unit sphere is the largest eigenvalue .
Take square roots: . SIGNIFICANCE: is the operator norm — it bounds how much a matrix can amplify errors, which is why (the condition number) decides whether a linear system is numerically trustworthy. Every numerical analyst's first question about a matrix is about its singular values.
Recommendation engines factor the user-movie ratings matrix into a few rank-one "taste" layers; latent semantic analysis does it to word-document counts; noise reduction truncates small singular values because noise spreads evenly across all of them while signal concentrates in the top few. The SVD is the closest thing linear algebra has to a universal tool.
Going Deeper: Worked Problems
Find the singular values of ().
Step 1 — (a , so exactly two singular values).
Step 2 — its eigenvalues: trace , det : .
Step 3 — singular values , .
Step 4 — interpret: maps the plane into 3-space, stretching by along and by along ; the check sum of squared entries () ✓ confirms the arithmetic.
For , find and the error of the best rank-one approximation.
Step 1 — .
Step 2 — eigenvalues: trace , det : .
Step 3 — , .
Step 4 — by Eckart–Young the best rank-one approximation errs by exactly in the spectral norm; the fraction of "energy" captured is . Sanity: ✓ — the product of singular values is always the absolute determinant.