Difference between revisions of "Manuals/calci/CHOLESKYFACTORIZATION"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:30px">'''CHOLESKYFACTORIZATION(Matrix)'''</div><br/> *<math>Matrix</math> is the array of numeric elements ==Description== *This function gives the val...") |
|||
| Line 46: | Line 46: | ||
*If the matrix A is Hermitian and positive semi-definite, then it still has a decomposition of the form A = LL^T if the diagonal entries of L are allowed to be zero. | *If the matrix A is Hermitian and positive semi-definite, then it still has a decomposition of the form A = LL^T if the diagonal entries of L are allowed to be zero. | ||
*Also A can be written as LL^T for some invertible L, lower triangular or otherwise, then A is Hermitian and positive definite. | *Also A can be written as LL^T for some invertible L, lower triangular or otherwise, then A is Hermitian and positive definite. | ||
| + | |||
| + | ==Examples== | ||
| + | 1. CHOLESKYFACTORIZATION([[25, 15, -5],[15, 18, 0],[ -5, 0, 11]]) | ||
| + | {| class="wikitable" | ||
| + | |+Result | ||
| + | |- | ||
| + | | 5 || 0 || 0 | ||
| + | |- | ||
| + | | 3 || 3 || 0 | ||
| + | |- | ||
| + | | -1 || 1 || 3 | ||
| + | |} | ||
| + | 2. CHOLESKYFACTORIZATION([[8,14],[10,32]]) | ||
| + | {| class="wikitable" | ||
| + | |+Result | ||
| + | |- | ||
| + | | 2.8284271247461903 || 0 | ||
| + | |- | ||
| + | | 3.5355339059327373|| 4.415880433163924 | ||
| + | |} | ||
Revision as of 14:38, 11 July 2017
CHOLESKYFACTORIZATION(Matrix)
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle Matrix} is the array of numeric elements
Description
- This function gives the value of Cholesky factorization.
- It is called Cholesky Decomposition or Cholesky Factorization.
- In Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle CHOLESKYFACTORIZATION(Matrix)} ,Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle Matrix} is the set of values.
- The Cholesky Factorization is only defined for symmetric or Hermitian positive definite matrices.
- Every positive definite matrix A can be factored as Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle A} = Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle LL^{T}}
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L}
is lower triangular with positive diagonal elements
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L^{T}}
is is the conjugate transpose value of Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L}
- Every Hermitian positive-definite matrix has a unique Cholesky decomposition.
- Here Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle CHOLESKYFACTORIZATION(Matrix)} , Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle arr} is set of values to find the factorization value.
- Partition matrices in Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle A} = Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle LL^{T}} is
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \begin{bmatrix} a_{11} & A_{21}^{T}\\ A_{21} & A_{22} \end{bmatrix} = \begin{bmatrix} l_{11} & 0\\ L_{21} & L_{22} \end{bmatrix} \begin{bmatrix} l_{11} & L_{21}^{T}\\ 0 & L_{22}^{T} \end{bmatrix} = \begin{bmatrix} l_{11}^{2} & L_{11}L_{21}^{T}\\ L_{11}L_{21} & L_{21}L_{21}^{T} + L_{22}L_{22}^{T} \end{bmatrix} }
Algorithm
- Determine and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L_{21}} Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle l_{11}} = Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \sqrt{a_{11}}} Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L_{21}} = Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{1}{l_{11}}A_{21}}
- Compute Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L_{22}} from Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle A_{22}-L_{21}L_{21}^{T}} = Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L_{22}L_{22}^{T}}
- this is a Cholesky Factorization of order
- If the matrix A is Hermitian and positive semi-definite, then it still has a decomposition of the form A = LL^T if the diagonal entries of L are allowed to be zero.
- Also A can be written as LL^T for some invertible L, lower triangular or otherwise, then A is Hermitian and positive definite.
Examples
1. CHOLESKYFACTORIZATION([[25, 15, -5],[15, 18, 0],[ -5, 0, 11]])
| 5 | 0 | 0 |
| 3 | 3 | 0 |
| -1 | 1 | 3 |
2. CHOLESKYFACTORIZATION([[8,14],[10,32]])
| 2.8284271247461903 | 0 |
| 3.5355339059327373 | 4.415880433163924 |