Matrix mode : Ax=b
If A-1 exist,then answer is x=A-1b .
下列條件互為等價:
<PS>
三角矩陣
Def : lij=0
whenever i < j
[Thm] 如果 G=(gij) 為三角矩陣,
則 det(G) = g11
. g22
... gnn .
[Cor] 設 G 為三角矩陣,若 G 為 nonsingular
gii
0 for all i=1 ...n.
[Cor] G 若為三角矩陣,Gx=b 有唯一解
G 的主對角線皆不為 0
A=LU L:lower
U:upper
slove Ax=b is the same to LUx=b
Forward Substitution
aij , bi are given.
演算法:
For i=1 : n
<PS>
Example :
Exercise : Prove det(A)=g11 g22