![]() |
|
|
#12 |
|
"William"
May 2003
New Haven
2·7·132 Posts |
Unless there is something special going on, it's always the largest eigenvalue.
The eigenvectors form a basis set, so any vector x can be represented as x = a*e1 + b*e2 From which we see that Anx = a*lambda1n*e1 + b*lambda2n*e2 So the larger eigenvalue will always dominate this process unless there is something special forcing the coefficient to zero. The actual iteration adds a constant at every stage, the vector b in xn+1 = Axn+b so even if x0 is aligned with the smaller eigenvector, x1 will have a component of the larger eigenvector unless b is also a eigenvector for the smaller eigenvalue. (This problem actually picks up the component in x1 because x0 is the zero vector). You can concoct special scenarios with lamda=-1 so that the multiplication and addition cancel each other, but that's about all that can get in the way of the largest eigenvalue dominating the process. |
|
|
|