Every so often in mathematics, a structure hides a shortcut. Cholesky decomposition is one of the cleanest examples: if you know a matrix is symmetric () and positive-definite (all eigenvalues positive, or equivalently for all ), you can factor it as
where is a lower-triangular matrix. Because and carry the same entries — just mirrored — you only need to compute half as many numbers as you would for a general LU decomposition.
The method is named after André-Louis Cholesky, a French military officer and geodesist who devised it around 1910 while adjusting survey measurements for the map of Crete. He never published it himself; the algorithm reached the world through a posthumous note by his colleague Commandant Benoit in 1924.
Today Cholesky decomposition is one of the workhorses of numerical linear algebra: it solves systems efficiently, powers Kalman filters, Gaussian process regression, and the "square root" step inside countless optimization algorithms.
Comments
Loading comments...