Matrix Factorization for Positive Definite Matrices
The Cholesky decomposition factors a positive definite matrix A into the product A = L·L^T, where L is a lower triangular matrix. This decomposition is widely used in numerical analysis, solving linear systems, and optimization problems.
Enter numeric values for each matrix element. Matrix must be symmetric and positive definite.
Try these pre-configured matrices to understand different scenarios
Simple 2×2 identity matrix for basic demonstration
Size: 2×2
Matrix: [[1,0],[0,1]]
Diagonal matrix with positive eigenvalues
Size: 2×2
Matrix: [[4,0],[0,9]]
A simple symmetric positive definite matrix
Size: 2×2
Matrix: [[4,2],[2,3]]
3×3 covariance matrix commonly used in statistics
Size: 3×3
Matrix: [[2,1,0.5],[1,3,0.8],[0.5,0.8,1.5]]