Uniqueness Proof of Cholesky Decomposition
Theorem
has a unique Cholesky decomposition.
Explanation
Eigenvalue diagonalization, Singular value decomposition, Schur decomposition, LU decomposition, LDU decomposition all share the commonality of not being unique. This is because these methods either utilize the relationship between eigenvalues and eigenvectors, or because thus or can be divided into parts.
However, Cholesky decomposition doesn’t use the concept of eigenvalues and is expressed as , so can’t be split into two. Elaborating on this intuitive argument in a slightly meticulous and complicated manner immediately completes the proof.
Proof
is positive definite, hence an invertible matrix, and there exist a lower triangular matrix and diagonal matrix satisfying .
Multiplying by on the left and on the right gives
Therefore, is a positive definite matrix, and since the eigenvalues are all positive, the diagonal elements are all positive.
Thus,
can be defined, and it will be .
From ,
defining gives
Such a is unique, thus the Cholesky decomposition is also unique.
■