Cholesky factorization counterexample

280 Views Asked by At

Could you give a counter example of a symetric matrix for which the Cholesky factorization does not exist?

Also why does any eigenvalue solver have to be iterative?

1

There are 1 best solutions below

0
On BEST ANSWER
  1. If $M$ has a Cholesky decomposition $M=L^TL$, then $M$ must be symmetric positive-semidefinite, since $$x^TMx = (Lx)^T(Lx) = \|Lx\|^2\geq0.$$ Since every symmetric positive-semidefinite matrix has a Cholesky decomposition, this is a complete characterization.

  2. As copper.hat points out in his comment, finding the eigenvalues of a matrix is equivalent to finding the roots of its characteristic polynomial. For matrices larger than $4\times 4$, by the Abel-Ruffini Theorem there does not exist a general formula for these roots in terms of addition, multiplication, and rational powers. That does not mean that a direct eigenvalue algorithm cannot exist -- but such an algorithm would have to be "sufficiently complex" and is not yet known.