Choleskybased
Choleskybased refers to algorithms and procedures that rely on the Cholesky decomposition of a symmetric positive-definite matrix. In this factorization, A = L L^T, with L lower-triangular. Choleskybased methods use this factorization as a core building block to perform numerical tasks efficiently and stably when A is SPD.
Once L is computed, solving Ax=b reduces to two triangular solves: L y = b, L^T x = y.
Common applications include linear systems arising from discretized partial differential equations, least-squares problems with SPD design
Limitations include the requirement that the matrix be symmetric positive definite; if SPD is violated, Choleskybased