Dashboard

Featured nodes

Roots

  • Public root

Templates

  • Test template
  • iCorps template
  • Guanyu's Latex template
  • Ivar's latex template
  • Family Tree template
  • Latex template
  • Router template

Trees

  • Public trees

Orphans

  • Browse orphan nodes
Related nodes

Parents1

  • Factorization of matrices

Siblings6
  • Sort by title
  • Sort by date

  • Definition of singular value decomposition (SVD)
  • LU decomposition
  • Definition of rank factorization of a matrix
  • Definition of Cholesky decomposition
  • QR decomposition
  • Definition of Schur triangulation
Knowenβ
  • Help
    • Welcome to Knowen!
    • Edit test node (no login required)
    • Create new test node (no login required)
  • Not logged in
    • Sign in
    • Sign up

History & Comments

Back

Fill content

Description:Added Cholesky decomposition
# Definition of Cholesky decomposition

Put content here**Definition:** The **Cholesky decomposition** of a symmetric (Hermitian) positive-definite matrix $A$ is a factorization:
⏎
$$A = LL^*$$
⏎
where $L$ is a lower triangular matrix with positive diagonal entries.
⏎
For real symmetric positive-definite matrices: $A = LL^T$.
⏎
**Example:**
$$\begin{pmatrix} 4 & 2 \\ 2 & 5 \end{pmatrix} = \begin{pmatrix} 2 & 0 \\ 1 & 2 \end{pmatrix} \begin{pmatrix} 2 & 1 \\ 0 & 2 \end{pmatrix}$$
⏎
**Properties:**
- Exists and is unique for every symmetric positive-definite matrix
- Computationally about twice as fast as LU decomposition
- Used in Monte Carlo simulation, Kalman filters, and optimization
- Can be used to solve $Ax = b$ via forward and backward substitution
⏎
**Algorithm:** Entries of $L$ are computed column by column:
$l_{jj} = \sqrt{a_{jj} - \sum_{k=1}^{j-1} l_{jk}^2}$ and $l_{ij} = (a_{ij} - \sum_{k=1}^{j-1} l_{ik}l_{jk})/l_{jj}$ for $i > j$.

# Parents

* Factorization of matrices
Sign in to add a new comment

Contact us or leave feedback

© KTree Inc. 2026