The five decompositions covered above admit a single side-by-side comparison along four structural attributes: the algebraic form, the kind of matrix each one accepts, the structure of the factors it produces, and the primary application it enables. The table below collects this comparison as one reference card — useful both for orienting a new problem to the right factorization and for seeing how the family of decompositions is organized as a whole.
| Decomposition |
Form |
Matrix requirement |
Factor structure |
Key application |
| LU |
A = LU (or PA = LU) |
square; pivoting handles general invertible |
L lower triangular, U upper triangular |
solving linear systems, especially with multiple right-hand sides |
| QR |
A = QR |
any m × n with linearly independent columns |
Q with orthonormal columns, R upper triangular |
least squares; iterative algorithm for eigenvalues |
| Cholesky |
A = LLT |
symmetric positive definite |
L lower triangular with positive diagonal |
SPD systems at half LU cost; positive-definiteness test |
| Spectral |
A = QDQT |
real symmetric |
Q orthogonal (eigenvectors), D diagonal of eigenvalues |
symmetric eigenproblems, quadratic forms, PCA |
| SVD |
A = UΣVT |
any m × n — no restriction |
U, V orthogonal; Σ diagonal of non-negative singular values |
rank, pseudoinverse, low-rank approximation, condition number |