▸Cholesky decomposition succeeded for your 3x3 matrix.
- The lower triangular factor L has diagonal entries 2, 3, 1.732051, all positive, confirming positive definiteness.
- det(A) = 108, computed cheaply as the square of the product of L's diagonal elements.
- Reconstruction error ||A - LL^T|| is 0.00e+0, showing the factorization is numerically exact.
- Once L is known, you can solve Ax = b in two back-substitution passes (Ly = b, then L^T x = y), which is about twice as fast as LU decomposition for symmetric systems.
Next stepTo solve a linear system Ax = b, use L to perform forward substitution (Ly = b), then back substitution (L^T x = y).