[Def] If A is square symmetry , real and satisfy xTAx>0 for all x , then A is called positive definite matrix.
[Thm] If A is positive definite then A is nonsingular.
[Cor] A is positive definite then the system Ax=b has a unique
solution.
<Proof of Thm>
If A is singular then x 0 Ax=0 xT(Ax)=xT 0 = 0
A is not position definite.
[Thm] If M is real and nonsingular , then A=MMT is position definite.
<Proof>
yTy=y21+y22+ ... +y2n
[Thm] Cholesky Decomposition
If A is positive definite , then A can be factored into A=GGT where G is a lower triangular matrix and has positive entries
on its main diagonal element .
Example :
(1) M= MT=
then A=MMT= is a positive definite.
If A= is a positive definite , then if A=GGT G=M
A=LU=
=
=
Example :
M= and A=MMT=
The LU Decomposition of
A= =
=
=
= GGT
Cholesky Decomposition
A is position Definite
A can be decomposed in exact one way A=GGTwhere G is lower triangular with positive diagonal.
[ MMT=A Then A is positive Definite
In particular M=G. ]
A=GGT
A=(aij)= =
First , find the first colume of G .
a22=g21 g21 + g22 g22 g22=
In general , For j=1 ...n ,
gii=
gij= ,
( Find gii , then find gij )
Example : A= =
Phase 1. first colume
4=g211 g11= = 2
g21= = -1 g31= =2
g41= =1
Phase 2. second colume
g22= = 3
g32= = 0
g42= -2
Note : 1. A positive definite
aii > 0 for
all i
2. aij not necessary
0
Algorithm ( Cholesky Decomposition )
for j=1 ...n
for n=1 ...j-1
ajj ajj-a2jk
ajj
for i=j+1 ...n
for k=1 ...j-1
aij aij-aik ajk
aij