Power Method
Power Method
Note that the system of equations has been expressed in the form
[A] [X] = [X]
Next we normalize the result of this substitution such that largest value
is 1. This step is summarized in the matrix form as given below
The eigen value estimate after first iteration is 1.778. For the
next iteration [X] = [1 0 1]T is used
ME504: Linear Equations: Vishal S Chauhan
Using [X] = [1 0 1]T for the next iteration, we have
However for our case, calculations are not too time taking and we may
use value of Y = [A] [X] - [X] as the termination criterion. That is the
limiting condition can be on the maximum value of Y
1 1 -0.75
X1 = 0 X2 = -1 X3 = 1
1 1 -0.75
4 = 6.223 5 = 6.096
-0.714 -0.708
X4 = 1 X5 = 1
-0.714 -0.708
X1=[1,1,1]T
Algorithm for
Power method X’1 = AX1
l = largest of X’1
X2=X’1/
X’2= AX2
= largest of X’2
ME504: Linear Equations: Vishal S Chauhan
Use Power method to obtain the dominant eigenvalue of the symmetric square
matrix given below
A= 1 1 1
1 2 2
1 2 3