Numerical Analysis/Inverse iteration exercises

< Numerical Analysis

Consider the matrix,  A=\left[\begin{array}{c c c}6 & 2 & -1 \\2 & 5 & 1 \\-1 & 1 & 4 \end{array} \right] , and the vector,  \textbf{x}^{(0)} = \left[\begin{array}{c}1 \\1 \\ 1 \\\end{array} \right].

The LU decomposition of A is  L=\left[\begin{array}{c c c} 1&0&0\\0.3333&1&0\\-0.167&0.3077&1\end{array}\right], ~~ U=\left[\begin{array}{c c c}6&2&-1\\0&4.333&1.333\\0&0&3.423\end{array}\right].

By hand, use the LU decomposition to do two iterations of the inverse power method (without shift) starting with  \textbf{x}^{(0)}.

Use a computational software package to do 50 iterations. What was the result?

This article is issued from Wikiversity - version of the Saturday, April 02, 2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.