What is the definition of a eigenvalue?
lambda is an eigenvalue of A if there exists an non-zero vector v s.t. Av - lambda v.
v is call the eigenvector corresponding to lambda
How to do the power method?
Take random vector x^(0), for k = 1, 2, …
z^(k + 1) = Ax^(k), r^(k) = (z.i^(k + 1))/(x.i^(k)), x^(k + 1) = z^(k + 1) / || z^(k + 1) ||
What is the Inverse Power method?
Just the power method, but on the inverse
How to do the shifted power method?
Just max | lambda.i - s |