The Problem
- LU decomposition. For
A=248137139,
find a lower-triangular L (with 1's on the diagonal) and an upper-triangular U such that A=LU.
- Cholesky decomposition. For the symmetric positive definite matrix
B=422254246,
find a lower-triangular L with positive diagonal entries such that B=LLT.
- State concisely when each decomposition exists and when one is preferred over the other.