somewhere near the beginning.

Cholesky decomposition

Filed under: Mathematics — Alex @ 2:17 pm 7/11/2006

I just learned about the Cholesky algorithm for testing whether a matrix  A \in M_n is positive/ factoring a positive matrix in terms of a lower triangular matrix  L \in M_n as  A = LL^\star . This is something we should have learned in numerical methods for engineers– it seems extremely useful from what I’ve seen from just browsing the internet, and listening to the lecturer. In particular, the matrix that I was trying to show is positive definite in an earlier post:

 \displaystyle A = \begin{pmatrix} t_1 & t_1 & \ldots & t_1 \\ t_1 & t_2 & \ldots & t_2 \\ &  & \vdots & \\ t_1 &  t_2 & \ldots & t_n \end{pmatrix},

in the special but representative case where t_i = i, has a very simple Cholesky decomposition: L is the lower triangular matrix of ones (with ones on the diagonal also).

Possibly relevant posts:

1 Comment »

RSS feed for comments on this post. TrackBack URL

Leave a comment