lec19_Eigenproblem
lec19_Eigenproblem
1
Introduction
2
The Problem
| λ 1 |>| λ 2 |≥ · · · ≥| λ n |
3
Eigenvector space
Since there is nothing against absorbing the coefficients into the basis
vectors this can be written as
x = v1 + v2 + · · · + vn → x(0)
Starting an iteration,
x(1) = Ax(0)
x(2) = Ax(1) = A2 x(0)
..
.
x(k) = Ak x(0) 4
.
Substituting the expression for x(0) , gives
x(k) = Ak x(0)
= λ 1k v1 + λ 2k v2 + · · · + λ kn vn
k k
= λ 1k v1 + λλ21 v2 + · · · + cn λλn1 vn
If φ is a linear functional,
f g
φ x(k) = λ 1k φ (v1 ) + φ (k)
r k → λ 1 and x(k) → v1 as k → ∞
6
Algorithm: Power Method
integer :: k, kmax, n
real :: r
real array :: An×n , x 1×n , y1×n
external function :: φ
output :: 0, x
for k = 1 to kmax do
y← Ax
r← φ(y)/φ(x)
x← y/||y||∞
output k, x, r
end do
7
Example