How statement and proof provenance work
The first chip identifies the source of the statement or construction; the second identifies the source of its local proof or verification.
- Literature-sourced: the exact statement appears in a cited source; only wording and notation differ.
- AI-adapted: a semantically identical restatement of literature-sourced material, modulo indexing, notation, and boundary cases adopted by the library.
- AI-generated: a genuinely novel statement formulated by AI, with no source for the claim itself.
These labels describe origin, not correctness: citations and verification chips remain separate evidence.
Cholesky solves Hermitian positive-definite systems and has about half the factorisation cost of LU
Statement
Let be Hermitian positive definite and let be its Cholesky factorisation with positive diagonal.
- For every right-hand side , the system is solved by first solving and then solving .
- The two triangular solves cost scalar operations altogether, and the dense Cholesky factorisation costs scalar operations, compared with for dense LU factorisation without exploiting symmetry.
Facts & Assumptions
Given: A Hermitian positive-definite matrix , its Cholesky factor , and a right-hand side .
Forward and backward substitution correctly and uniquely solve triangular systems in scalar operations (Forward and backward substitution are correct, unique, and quadratic in scalar operations).
Hermitian positive-definite matrices admit a unique Cholesky factorisation with positive diagonal (A matrix admits a Cholesky factorisation with positive diagonal exactly when it is Hermitian positive definite, and that factor is unique).
Cholesky factorisation means with lower triangular and positive diagonal (Hermitian positive-definite matrices and Cholesky factorisation A = LL* with positive diagonal).
Proof
By [L2] and [L3], the equation is . Solve by forward substitution and then by backward substitution. Stepwise uniqueness in [L1] makes both solves unique, and substituting back into the first equation gives .
The solve cost is the sum of two triangular solves, so [L1] gives scalar operations, or multiply-add pairs.
In the dense factorisation, column computes one square root, divisions in the column below the pivot, and updates the trailing symmetric submatrix of size by a rank-one outer product. That update touches stored entries, and each one costs one multiplication and one subtraction, so the update work is Summing with gives which dominates the cost. LU performs the same style of update on the full trailing matrix, giving scalar operations. Thus Cholesky uses about half the factorisation work.
Step 1.1 proves the solve statement, while steps 1.2 and 2.1 give the operation counts.
Depends on
- Forward and backward substitution are correct, unique, and quadratic in scalar operations
- A matrix admits a Cholesky factorisation with positive diagonal exactly when it is Hermitian positive definite, and that factor is unique
- Hermitian positive-definite matrices and Cholesky factorisation A = LL* with positive diagonal
Used by
Dependency tree · two levels
9 results within two dependency steps of this one, each drawn at its shortest distance from it. An arrow runs from a result to what uses it, so the chart reads left to right and ends at this result, which carries a heavier outline. Every node is a link to that result. Click elsewhere on the chart to enlarge it.
Sources
- Tobin A. Driscoll and Richard J. Braun, Fundamentals of Numerical Computation, Theorem 2.5.1 and Observation 2.9.3 (standard reference, not scraped)
- Tobin A. Driscoll and Richard J. Braun, Fundamentals of Numerical Computation, Section 2.9 (standard reference, not scraped)