Cholesky decomposition for Matrix Inversion

Cholesky decomposition for Matrix Inversion

where  is a lower triangular matrix, while  is an upper triangular matrix.

It is much easier to compute the inverse of a triangular matrix and there exist numerical solutions. Then the original matrix inverse is computed simply by multiplying the two inverses as

\mathbf{A}^{-1} = (\mathbf{L}^{-1})^T(\mathbf{L}^{-1}) = (\mathbf{U}^{-1})(\mathbf{U}^{-1})^T

As bonus, the determinant is also much easier to compute.

One can also use complex matrices, and just use a conjugate-transpose instead of transpose alone.


转自:http://mobiusfunction.wordpress.com/2010/08/07/the-inverse-of-a-triangular-matrix/

你可能感兴趣的:(Cholesky decomposition for Matrix Inversion)