第2197题:Cholesky factorization

Andre-Louis Cholesky (1875–1918)
The following conditions are equivalent for a symmetric n×n matrix A :
1. A is positive definite.
2. det ( A(r) ) >0 for each r=1,2,⋯,n .
3. A=UTU where U is an upper triangular matrix with positive entries on the main diagonal.
Furthermore, the factorization in A=UTU is unique, called the Cholesky factorization of A .
If A is a positive definite matrix, the Cholesky factorization A=UTU can be obtained as follows:
Step 1. Carry A to an upper triangular matrix U1 with positive diagonal entries using row operations each of which adds a multiple of a row to lower row.
Step 2. Obtain U from U1 by dividing each row of U1 by the square root of the diagonal entry in that row.
OK, let's find the Cholesky factorization U of A=⎣⎡301021112⎦⎤ .
A. U=⎣⎢⎡3000201167⎦⎥⎤
B. U=⎣⎢⎢⎢⎢⎢⎡300020√31√21√6√7⎦⎥⎥⎥⎥⎥⎤
C. U=⎣⎢⎢⎢⎢⎢⎡√31000√210√3√2√6√7⎦⎥⎥⎥⎥⎥⎤
D. U=⎣⎢⎢⎢⎢⎢⎡√3000√20√31√21√6√7⎦⎥⎥⎥⎥⎥⎤
Andre-Louis Cholesky (1875–1918), was a French mathematician who died in World War I. His factorization was published in 1924 by a fellow officer.