Notes βΊ MATH 2160: Linear Algebra Guide
Chapter 5 Study Guide
665 words 5 min Modified
Table of Contents
Chapter 5 β Eigenvalues and Eigenvectors
Covers Β§5.1β5.3. Full problems and recorded answers in 2160 Compendium.
44 questions, 6 true/false (13%). Highly procedural: find eigenvalues, find eigenvectors, assemble $P$ and $D$. The procedures chain together, so an error in Β§5.2 propagates through Β§5.3.
Β§5.1 Eigenvectors and Eigenvalues
A nonzero vector $\mathbf{x}$ is an eigenvector of $A$ if
$$A\mathbf{x}=\lambda\mathbf{x}$$for some scalar $\lambda$, the corresponding eigenvalue.
$\mathbf{x}=\mathbf{0}$ is never an eigenvector β but $\lambda=0$ is a legitimate eigenvalue (it occurs exactly when $A$ is singular).
“Is $\mathbf{v}$ an eigenvector of $A$?” β compute $A\mathbf{v}$ and check whether the result is a scalar multiple of $\mathbf{v}$. If $A\mathbf{v}=\lambda\mathbf{v}$, that $\lambda$ is the eigenvalue. Pure multiplication, no solving.
“Is $\lambda$ an eigenvalue of $A$?” β check whether $(A-\lambda I)\mathbf{x}=\mathbf{0}$ has a nontrivial solution, i.e. whether $A-\lambda I$ is singular. Equivalently $\det(A-\lambda I)=0$.
Confusing these wastes significant time β 5.1.4 and 5.1.6 are the first kind, 5.1.2, 5.1.7, 5.1.8 the second.
The eigenspace for $\lambda$ is $\text{Nul}(A-\lambda I)$ β all eigenvectors for $\lambda$, together with $\mathbf{0}$.
To find a basis: form $A-\lambda I$, row reduce, solve the homogeneous system, and read off the parametric vector form. This is a Β§1.5 null-space computation wearing a new name.
The eigenvalues of a triangular matrix are exactly its diagonal entries β no characteristic polynomial needed.
Tested as β is $\lambda$ an eigenvalue 5.1.2, 5.1.7, 5.1.8 Β· is $\mathbf{v}$ an eigenvector 5.1.4, 5.1.6 Β· basis for an eigenspace 5.1.9β5.1.16 Β· eigenvalues directly 5.1.17
Β§5.2 The Characteristic Equation
The left side is the characteristic polynomial; its roots are the eigenvalues. For $n\times n$ it has degree $n$.
For $A=\begin{bmatrix} a & b \\ c & d\end{bmatrix}$:
$$\det(A-\lambda I)=\lambda^{2}-(a+d)\lambda+(ad-bc)=\lambda^{2}-(\operatorname{tr}A)\lambda+\det A$$Worth memorizing β it turns most $2\times2$ eigenvalue problems into a quadratic you can write down immediately.
Algebraic multiplicity β the multiplicity of $\lambda$ as a root of the characteristic polynomial. Geometric multiplicity β $\dim$ of the eigenspace, i.e. $\dim\text{Nul}(A-\lambda I)$.
Always $1 \le \text{geometric} \le \text{algebraic}$. When they differ for some eigenvalue, the matrix is not diagonalizable β this is the bridge into Β§5.3 and what 5.2.18 is checking.
When asked to list eigenvalues repeated according to multiplicity, a double root must appear twice. The total count must equal $n$ (counting complex roots).
Tested as β characteristic polynomial and eigenvalues 5.2.1β5.2.6 Β· characteristic polynomial only 5.2.9β5.2.14 Β· eigenvalues with multiplicity 5.2.15, 5.2.16 Β· multiplicity comparison 5.2.18
Β§5.3 Diagonalization
$A$ ($n\times n$) is diagonalizable $\iff$ $A$ has $n$ linearly independent eigenvectors. In that case $A=PDP^{-1}$, where
- $P$ has the eigenvectors as its columns
- $D$ is diagonal with the corresponding eigenvalues in the same order
The order must match: column $j$ of $P$ pairs with entry $(j,j)$ of $D$.
- Find the eigenvalues from $\det(A-\lambda I)=0$
- Find a basis for each eigenspace
- Count: if the eigenvectors total $n$, build $P$ and $D$; otherwise report not diagonalizable
- Verify if time permits β check $AP=PD$, which avoids inverting $P$
If an $n\times n$ matrix has $n$ distinct eigenvalues, it is automatically diagonalizable β eigenvectors from distinct eigenvalues are always independent.
The converse fails: repeated eigenvalues may still diagonalize, provided each eigenspace is big enough to match its algebraic multiplicity. A $3\times3$ with two eigenvalues and both eigenspaces one-dimensional gives only $2 < 3$ independent eigenvectors β not diagonalizable (5.3.30).
Tested as β diagonalize with eigenvalues given 5.3.11, 5.3.12, 5.3.15, 5.3.16 Β· diagonalize from scratch 5.3.17, 5.3.19 Β· compute $A^k$ from $PDP^{-1}$ 5.3.1β5.3.3 Β· diagonalizability true/false 5.3.21β5.3.30
Related: Chapter 4 Study Guide Β· Chapter 6 Study Guide Β· 2160 Compendium