Cholesky
Cholesky decomposition, also called Cholesky factorization, is a factorization of a real symmetric positive-definite matrix A into the product A = L L^T, where L is a lower triangular matrix with positive diagonal entries. In the complex case, for Hermitian positive-definite matrices, the factorization can be written as A = L L^H, where L is lower triangular and L^H denotes the conjugate transpose. There is also an upper-triangular variant, A = U^T U or A = U^H U, using an upper triangular factor U.
Existence and uniqueness: A admits a Cholesky factorization if and only if A is positive definite. When
Algorithm and complexity: The standard algorithm computes L column by column. For k = 1 to n, set
Applications: Cholesky is widely used to solve linear systems with symmetric positive-definite matrices by forward and
History: The method is named after André-Louis Cholesky, a French engineer who introduced it in the early