mammothrob
Junior Member
- Joined
- Nov 12, 2005
- Messages
- 91
Im doing a LU factorization on Matrix A
\(\displaystyle A = \left[ {\begin{array}
1 & 1 & 1 \\
1 & 2 & 2 \\
1 & 2 & 3 \\
\end{array}} \right]\)
I reduced it to an upper triangular matricie
\(\displaystyle \left[ {\begin{array}
1 & 1 & 1 \\
0 & 1 & 2 \\
0 & 0 & -1 \\
\end{array}} \right]\)
Along the way I kept track of the 3 elementry inverse matrices that got me there. I multiplied them togeather and got
\(\displaystyle E1*E2*E3*= \left[ {\begin{array}
1 & 0 & 0 \\
1 & 1 & 1 \\
1 & 1 & 0 \\
\end{array}} \right]\)
which is not a lower triangular matricie, but when I multiply it with the upper triangle I found I get A.
\(\displaystyle \left[ {\begin{array}
1 & 0 & 0 \\
1 & 1 & 1 \\
1 & 1 & 0 \\
\end{array}} \right]\left[ {\begin{array}
1 & 1 & 1 \\
0 & 1 & 2 \\
0 & 0 & { - 1} \\
\end{array}} \right] = A\)
Does this count as an LU factorization? or just some other factoriztion that I worked out?
If not, how do I make my (inverse elementry matricies) E1E2E3 = Lower triangular?
Any ideas are much appreciated.
\(\displaystyle A = \left[ {\begin{array}
1 & 1 & 1 \\
1 & 2 & 2 \\
1 & 2 & 3 \\
\end{array}} \right]\)
I reduced it to an upper triangular matricie
\(\displaystyle \left[ {\begin{array}
1 & 1 & 1 \\
0 & 1 & 2 \\
0 & 0 & -1 \\
\end{array}} \right]\)
Along the way I kept track of the 3 elementry inverse matrices that got me there. I multiplied them togeather and got
\(\displaystyle E1*E2*E3*= \left[ {\begin{array}
1 & 0 & 0 \\
1 & 1 & 1 \\
1 & 1 & 0 \\
\end{array}} \right]\)
which is not a lower triangular matricie, but when I multiply it with the upper triangle I found I get A.
\(\displaystyle \left[ {\begin{array}
1 & 0 & 0 \\
1 & 1 & 1 \\
1 & 1 & 0 \\
\end{array}} \right]\left[ {\begin{array}
1 & 1 & 1 \\
0 & 1 & 2 \\
0 & 0 & { - 1} \\
\end{array}} \right] = A\)
Does this count as an LU factorization? or just some other factoriztion that I worked out?
If not, how do I make my (inverse elementry matricies) E1E2E3 = Lower triangular?
Any ideas are much appreciated.