Overview
Once eigenvalues are found, eigenvectors are computed by solving the homogeneous system (A−λI)v=0. The solution space forms the eigenspace for that eigenvalue.
Method
For each eigenvalue λ:
- Form the matrix A−λI
- Solve (A−λI)v=0
- The solution set (excluding zero) gives eigenvectors
Step-by-Step Process
Step 1: Substitute λ
Replace λ in A−λI with the known eigenvalue.
Step 2: Row Reduce
Row reduce A−λI to echelon form.
Step 3: Solve the System
Find the null space of A−λI.
Step 4: Write Eigenvectors
Express solutions in parametric form.
Example: 2×2 Matrix
A=[4123]Eigenvalues: λ1=5,λ2=2
For λ1=5:
A−5I=[4−5123−5]=[−112−2]
Row reduce:
[−112−2]→[10−20]
x1−2x2=0⇒x1=2x2
Let x2=t: v=t[21]
Eigenvector: v1=[21] (or any scalar multiple)
For λ2=2:
A−2I=[4−2123−2]=[2121]
Row reduce:
[2121]→[1010]
x1+x2=0⇒x1=−x2
Let x2=t: v=t[−11]
Eigenvector: v2=[−11]
Eigenspace
The eigenspace Eλ is the set of all eigenvectors for λ plus the zero vector:
Eλ=Null(A−λI)
It's a subspace with dimension = geometric multiplicity of λ.
Geometric Multiplicity
The dimension of the eigenspace:
geo.mult(λ)=dim(Eλ)=n−rank(A−λI)
Always: 1≤ geometric multiplicity ≤ algebraic multiplicity
Example: Repeated Eigenvalue
A=[3012]p(λ)=(λ−2)(λ−3)
Wait, let me reconsider:
A=[2012]p(λ)=(λ−2)2⇒λ=2 (mult. 2)
For λ=2:
A−2I=[0010]
x2=0, x1 is free
E2=span{[10]}
Geometric multiplicity = 1 < 2 = algebraic multiplicity
Example: Full Eigenspace
A=[2002]Eigenvalue: λ=2 (mult. 2)
A−2I=[0000]
All non-zero vectors are eigenvectors!
E2=R2=span{[10],[01]}
Geometric multiplicity = 2 = algebraic multiplicity
Verifying Eigenvectors
Always verify by checking Av=λv:
A=[4123],v=[21],λ=5
Av=[4123][21]=[4(2)+2(1)1(2)+3(1)]=[105]=5[21]✓
Common Mistakes
- Forgetting that eigenvectors cannot be zero
- Not checking all eigenvalues
- Missing linearly independent eigenvectors for repeated eigenvalues
- Computational errors in row reduction