Matrix Solved Problems – Part 2 (B.
Tech ECE)
■ Fully Solved Important Exam Problems
■■■■■■■■■■■■■■■■■■■■■■■■■■■
1■■ Eigenvalue & Eigenvector Problem
■■■■■■■■■■■■■■■■■■■■■■■■■■■
Find eigenvalues and eigenvectors of:
A = [[4, 1],
[1, 4]]
Solution:
|A - λI| = 0 → |4-λ, 1; 1, 4-λ| = (4-λ)^2 - 1 = 0
=> λ = 5, 3
Eigenvectors:
For λ=5 → (A-5I)x = 0 → v■ = [1,1]■
For λ=3 → (A-3I)x = 0 → v■ = [1,-1]■
■■■■■■■■■■■■■■■■■■■■■■■■■■■
2■■ Cayley–Hamilton Theorem
■■■■■■■■■■■■■■■■■■■■■■■■■■■
Verify theorem and find A■¹ for:
A = [[1,2],
[3,4]]
Characteristic eq:
|A - λI| = λ² - 5λ - 2 = 0
So A² - 5A - 2I = 0 → 2I = A² - 5A
Multiply by A■¹:
2A■¹ = A - 5I
=> A■¹ = (A - 5I)/2
=> A■¹ = [[-3/2, 1],
[3/2, -1]]
■■■■■■■■■■■■■■■■■■■■■■■■■■■
3■■ Diagonalization
■■■■■■■■■■■■■■■■■■■■■■■■■■■
Diagonalize matrix:
A = [[2,0],
[1,3]]
Eigenvalues: λ1=2, λ2=3
Eigenvectors: v1=[1, -1]■ ; v2=[0,1]■
P = [v1 v2] = [[1,0],[-1,1]]
D = [[2,0],[0,3]]
A = P D P■¹ ■
■■■■■■■■■■■■■■■■■■■■■■■■■■■
4■■ Rank & Consistency
■■■■■■■■■■■■■■■■■■■■■■■■■■■
Check consistency:
x+y+z=6
2x + 3y + 7z = 20
x - y + 2z = 4
Row-reduced form → Rank(A)=Rank(A|B)=3
=> **Unique solution exists** ■
■■■■■■■■■■■■■■■■■■■■■■■■■■■
5■■ Determinant & Inverse
■■■■■■■■■■■■■■■■■■■■■■■■■■■
A = [[5,4],
[1,2]]
det(A) = 5*2 - 4*1 = 6 ≠ 0 => Invertible
A■¹ = (1/6)[[2, -4],
[-1,5]]
■■■■■■■■■■■■■■■■■■■■■■■■■■■
■ Key Formula Revision:
• A■¹ = adj(A) / det(A)
• det(AB) = det(A)det(B)
• If λ is eigenvalue → det(A) = product(λi)
■ Practice these before exam day!