Choleski Decomposition
- Factorizes a symmetric, positive definite matrix A into L · L^T, where L is lower triangular.
- Produces factors (L and L^T) that make solving Ax = b efficient via forward and backward substitution.
- Requires A to be symmetric and positive definite.
Definition
Section titled “Definition”Choleski decomposition is a numerical method used in linear algebra to decompose a symmetric, positive definite matrix into the product of a lower triangular matrix and its transpose. This decomposition is named after André-Louis Choleski, who first published it in 1918.
Explanation
Section titled “Explanation”Given a symmetric, positive definite matrix A, Choleski decomposition produces a lower triangular matrix L such that:
Symmetric means A = A^{T}. Positive definite means that for any non-zero vector x, the scalar is positive.
For a 3×3 matrix A, the lower triangular factor L has the form:
The source describes the diagonal elements as the square roots of the diagonal elements of A:
The off-diagonal elements are obtained by solving the system of equations:
The source gives the resulting expressions:
Once L is obtained, its transpose L^{T} is the upper triangular factor and
To solve a linear system Ax = b using Choleski decomposition:
- Decompose A = L L^{T}.
- Solve Ly = b for y using forward substitution.
- Solve L^{T} x = y for x using backward substitution.
Examples
Section titled “Examples”Example 3×3 matrix A:
The lower triangular factor L (as given in the source) is:
The transpose L^{T} is:
The decomposition satisfies:
Solving Ax = b using the decomposition proceeds by first solving:
(by forward substitution) and then:
(by backward substitution).
Use cases
Section titled “Use cases”- Solving systems of linear equations Ax = b efficiently and accurately by factoring A into L and L^{T}.
Notes or pitfalls
Section titled “Notes or pitfalls”- The decomposition requires A to be symmetric and positive definite.
- The method yields lower and upper triangular factors (L and L^{T}) that enable forward and backward substitution.
Related terms
Section titled “Related terms”- Choleski factors (L and L^{T})
- Lower triangular matrix
- Symmetric matrix
- Positive definite matrix
- Forward substitution
- Backward substitution