PlanetMath (more info)
 Math for the people, by the people. Sponsor PlanetMath
Encyclopedia | Requests | Forums | Docs | Wiki | Random | RSS  
Login
create new user
name:
pass:
forget your password?
Main Menu
Owner confidence rating: Low Entry average rating: No information on entry rating
Cholesky decomposition (Definition)

Cholesky Decomposition

A symmetric and positive definite matrix can be efficiently decomposed into a lower and upper triangular matrix. For a matrix of any type, this is achieved by the LU decomposition which factorizes $A = LU$ . If $A$ satisfies the above criteria, one can decompose more efficiently into $A=LL^T$ where $L$ is a lower triangular matrix with positive diagonal elements. $L$ is called the Cholesky triangle.

To solve $Ax = b$ , one solves first $Ly = b$ for $y$ , and then $L^Tx=y$ for $x$ .

A variant of the Cholesky decomposition is the form $A=R^TR$ , where $R$ is upper triangular.

Cholesky decomposition is often used to solve the normal equations in linear least squares problems; they give $A^TAx=A^Tb$ , in which $A^TA$ is symmetric and positive definite.

To derive $A=LL^T$ , we simply equate coefficients on both sides of the equation:

$$ \begin{bmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ a_{31} & a_{32} & \cdots & a_{3n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{n1} & a_{n2} & \cdots & a_{nn} \end{bmatrix} = \begin{bmatrix} l_{11} & 0 & \cdots & 0 \\ l_{21} & l_{22} & \cdots & 0 \\ \vdots & \vdots & \ddots & \vdots \\ l_{n1} & l_{n2} & \cdots & l_{nn} \end{bmatrix} \begin{bmatrix} l_{11} & l_{21} & \cdots & l_{n1} \\ 0 & l_{22} & \cdots & l_{n2} \\ \vdots & \vdots & \ddots & \vdots \\ 0 & 0 & \cdots & l_{nn} \end{bmatrix} $$

Solving for the unknowns (the nonzero $l_{ji}$ s), for $i=1,\cdots ,n$ and $j=i+1,\ldots ,n$ , we get:

\begin{eqnarray*} l_{ii} & = & \sqrt{\left( a_{ii} - \sum_{k=1}^{i-1} l_{ik}^2 \right)} \\ l_{ji} & = & \left(a_{ji} - \sum_{k=1}^{i-1} l_{jk} l_{ik} \right) / l_{ii} \end{eqnarray*} Because $A$ is symmetric and positive definite, the expression under the square root is always positive, and all $l_{ij}$ are real.

Bibliography

1
Originally from The Data Analysis Briefbook (http://rkb.home.cern.ch/rkb/titleA.html)




"Cholesky decomposition" is owned by gufotta. [ full author list (2) | owner history (2) ]
(view preamble | get metadata)

View style:

See Also: square root of positive definite matrix

Other names:  Cholesky factorization, matrix square root
Also defines:  Cholesky triangle
Keywords:  matrix factorizations
Log in to rate this entry.
(view current ratings)

Cross-references: real, square root, expression, equation, sides, coefficients, equate, linear least squares, normal equations, upper triangular, diagonal, positive, lower triangular matrix, LU decomposition, type, upper triangular matrix, matrix, positive definite, symmetric
There are 4 references to this entry.

This is version 11 of Cholesky decomposition, born on 2002-01-05, modified 2006-06-04.
Object id is 1287, canonical name is CholeskyDecomposition.
Accessed 55566 times total.

Classification:
AMS MSC15-00 (Linear and multilinear algebra; matrix theory :: General reference works )
 65-00 (Numerical analysis :: General reference works )
 62J05 (Statistics :: Linear inference, regression :: Linear regression)

Pending Errata and Addenda
None.
[ View all 8 ]
Discussion
Style: Expand: Order:
forum policy

No messages.

Interact
post | correct | update request | add derivation | add example | add (any)