These are personal study and translation notes for reference only; the original course materials belong to MIT OpenCourseWare and their respective rights holders.
Part 6: Eigenvalues and Eigenvectors: Ax=λx and Anx=λnx
6.1 Eigenvalues λ and Eigenvectors x: Ax=λx
An eigenvectorx of a square matrix A is a nonzero vector that, when multiplied by A, only scales (does not rotate):
Ax=λx
The scalar λ is the corresponding eigenvalue.
Finding eigenvalues: Solve the characteristic equation:
det(A−λI)=0
This is a polynomial of degree n in λ.
Finding eigenvectors: For each eigenvalue λi, solve:
(A−λiI)x=0
The eigenvectors span the eigenspace corresponding to λi.
Key Properties:
Trace:trace(A)=∑i=1naii=∑i=1nλi
Determinant:detA=∏i=1nλi
Inverse:A−1x=(1/λ)x (if λ=0)
Powers:Anx=λnx
Shift:A−cI has eigenvalues λi−c
Special Cases:
Triangular matrices: eigenvalues are the diagonal entries
Singular matrix: λ=0 is an eigenvalue (since detA=0)
Identity matrix: λ=1 (multiplicity n)
6.2 Diagonalizing a Matrix: X−1AX=Λ
If A has nindependent eigenvectors (forming a matrix X), then:
A=XΛX−1
where Λ=diag(λ1,…,λn).
Verification:AX=A[x1⋯xn]=[λ1x1⋯λnxn]=XΛ.
Powers are easy when diagonalized:
Ak=XΛkX−1
Each eigenvalue is raised to the k-th power independently.
Similar Matrices:B=M−1AM has the same eigenvalues as A. The eigenvectors are transformed: if Ax=λx, then B(M−1x)=λ(M−1x).
When is a matrix NOT diagonalizable? When it has repeated eigenvalues but not enough independent eigenvectors. For example, a 2×2 Jordan block [λ01λ] has only one eigenvector.
6.3 Symmetric Positive Definite Matrices: Five Tests
Symmetric Matrices S=ST:
All eigenvalues are real
Eigenvectors for distinct eigenvalues are orthogonal
Spectral Theorem:S=QΛQT where Q is orthogonal
Positive Definite Matrices: A symmetric matrix S is positive definite if any of these equivalent conditions holds:
All eigenvaluesλi>0
Energy xTSx>0 for all nonzero x
All pivots are positive (from LDLT factorization)
All leading principal minors (determinants of upper-left submatrices) are positive
S=ATA for some matrix A with independent columns
Positive Semidefinite: Conditions above with ≥0 (equality allowed).
Example: The second difference matrix K (tridiagonal with 2 on diagonal, -1 on off-diagonals) is positive definite. For n=3:
K=2−10−12−10−12
Its eigenvalues are λk=2−2cos(kπ/(n+1))=4sin2(kπ/(2(n+1))), all positive.
6.4 Linear Differential Equations du/dt=Au
Consider a system of linear ODEs:
dtdu=Au,u(0)=u0
Solution via Eigenvectors: Assuming A is diagonalizable with eigenvectors x1,…,xn, express u0 as:
u0=c1x1+c2x2+⋯+cnxn
Then:
u(t)=c1eλ1tx1+c2eλ2tx2+⋯+cneλntxn
Matrix Exponential:
eAt=I+At+2!(At)2+3!(At)3+⋯
When A=XΛX−1:
eAt=XeΛtX−1=Xeλ1t⋱eλntX−1
Stability:
Asymptotically stable:u(t)→0 as t→∞ if all Re(λi)<0
Weakly stable:u(t) remains bounded if Re(λi)≤0 and any λi=0 is semisimple
Unstable: Any Re(λi)>0
6.5 Matrices in Engineering: Second Differences
Second Difference Matrix K (discretizes −d2u/dx2):
K=2−1−12⋱−1⋱−1⋱2
Energy:xTKx=∑i=1n−1(xi−xi+1)2>0 for nonzero x, proving K is positive definite.
Spring-Mass Systems:
Steady state:Ku=g (spring displacements due to gravity)
Oscillation:−Ku=md2u/dt2 (free vibrations)
The eigenvalues of K determine the natural frequencies of vibration: ωk=λk.
Orthogonal eigenvectors of K: The eigenvectors of this tridiagonal matrix are discrete sines:
(vk)j=sin(n+1jkπ)
These are exactly the eigenvectors that diagonalize the second difference operator -- the discrete analogue of Fourier sine series.
Previous Part 6: Eigenvalues and Eigenvectors : Ax = λx and A^n x = λ^n x Next