IP331.com | Online Tools
HomeMatrix ToolsCholesky Decomposition Calculator

Cholesky Decomposition Calculator

Compute A = LLᵀ (L lower triangular)

Enter 2x2 Symmetric Matrix

Cholesky Decomposition Definition

A = L × Lᵀ
L: Lower triangular matrix
L[i][j] = 0 for i < j
L[i][i] > 0 (positive diagonal)
Only exists for positive definite matrices

Cholesky decomposition factorizes a positive definite matrix A into A = LLᵀ where L is a lower triangular matrix with positive diagonal entries. It is particularly efficient for symmetric matrices.

Cholesky decomposition only exists for positive definite matrices. All leading principal minors must be positive.

What is Cholesky Decomposition?

Cholesky decomposition factorizes a positive definite matrix A into A = LLᵀ where L is a lower triangular matrix with positive diagonal entries. It is the square root of a matrix and is widely used in numerical computations.

Lower Triangular L

L[i][j] = 0 for i < j, positive diagonal entries.

Positive Definite

Requires xᵀAx > 0 for all x ≠ 0.

Uniqueness

Unique factorization for positive definite matrices.

Efficiency

O(n³/3) operations, faster than LU decomposition.

Cholesky Algorithm:
For i from 1 to n:
L[i][i] = sqrt(A[i][i] - Σk<i L[i][k]²)
For j from i+1 to n:
L[j][i] = (A[j][i] - Σk<i L[j][k]L[i][k]) / L[i][i]

Applications

Monte Carlo Optimization Kalman Filtering Linear Systems Statistics

Frequently Asked Questions

What is Cholesky decomposition?
A = LLᵀ where L is lower triangular with positive diagonal entries. Only exists for positive definite matrices.
How to compute Cholesky?
Recursive formula: L[i][i] = sqrt(A[i][i] - sum of L[i][j]^2), L[i][j] = (A[i][j] - sum)/L[j][j].
Properties of Cholesky?
L is lower triangular with positive diagonal. Uniquely defined for positive definite matrices.
Applications of Cholesky?
Solving linear systems, Monte Carlo simulation, optimization, Kalman filtering, numerical stability.

More Matrix Tools

Free online calculators and tools covering mathematics, unit conversion, text processing, and daily life. Accurate, fast, mobile-friendly, and completely free to use.

© 2026 IP331.com — Free Online Tools. All rights reserved.

About · Contact · Privacy Policy · Cookie Policy · Terms of Use · Disclaimer · Sitemap