Matrix Factorisations
Motivation: why this matters in quant finance
Factorisations are how quants solve linear systems without pretending every matrix should be inverted directly. Cholesky turns covariance matrices into simulation engines, QR stabilises least squares, and SVD exposes low-rank risk structure.
The informal idea
A factorisation rewrites one matrix as a product of simpler matrices. The product stores the same linear map but makes a specific task easier: solving, simulating, compressing, or diagnosing conditioning.
Formal definitions
Common decompositions include , , for positive definite covariance matrices, and for singular value decompositions.
Key properties
Structure replaces inversion
Solving triangular systems is cheaper and stabler than forming .
Cholesky is the covariance workhorse
If , then has covariance when has identity covariance.
SVD separates signal scale by direction
Large singular values identify directions where the matrix acts strongly.
Worked example
Let . A Cholesky factor is because .
Common confusions and pitfalls
"Factorisation is just notation." It changes the numerical problem.
"Matrix inverse is the default tool." In computation, solve systems instead.
"Every factorisation exists for every matrix." Each has hypotheses or pivoting caveats.
Where this goes next
- Positive Definite Matrices: gives the condition behind Cholesky covariance factors.
- Eigenvalues and Eigenvectors: explains spectral decompositions.
- Covariance Matrices: applies factorisations to risk and simulation.
References
- Lang, S. (1986). Introduction to Linear Algebra (2nd ed.). Springer. Ch. II, Ch. V-VIII, and the eigenvalue chapter as relevant.