Math ClubMath Club
v1 · padrão canônico

Lesson 114 — Eigenvalues and Eigenvectors

Invariant directions of a linear transformation: Av = λv. Characteristic polynomial, algebraic and geometric multiplicity. The cornerstone of PageRank, quantum mechanics, and PCA.

Used in: Linear Algebra (1st year engineering) · Equiv. Lineare Algebra LK German · Equiv. H2 Math Singapore · Math III advanced Japanese

Av=λv,v0A\vec{v} = \lambda\,\vec{v},\quad \vec{v} \neq \vec{0}

An eigenvector v\vec{v} of AA is a direction that AA only stretches or shrinks, without rotating. The scalar λ\lambda is the eigenvalue. Eigenvalues are the roots of the characteristic polynomial pA(λ)=det(AλI)=0p_A(\lambda) = \det(A - \lambda I) = 0.

Choose your door

Rigorous notation, full derivation, hypotheses

Rigorous definition

Eigenvalues and eigenvectors

Characteristic equation

Eigenspace and multiplicities

Fundamental properties

General direction (rotates)AvvEigenvector (stretches only)Av = λvv

General vector rotates under A (yellow arrow deviates). Eigenvector only changes magnitude, remains on the same line (blue arrow).

Worked examples

Exercise list

40 exercises · 10 with worked solution (25%)

Application 19Understanding 7Modeling 7Challenge 4Proof 3
  1. Ex. 114.1Application

    Compute the eigenvalues and eigenvectors of A=(3002)A = \begin{pmatrix} 3 & 0 \\ 0 & 2 \end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    The matrix is diagonal, so eigenvalues are on the diagonal: λ1=3\lambda_1 = 3 and λ2=2\lambda_2 = 2. Eigenvectors: (1,0)(1,0) and (0,1)(0,1).
    Show step-by-step (with the why)
    1. For a diagonal matrix diag(a,b)\operatorname{diag}(a, b), the characteristic polynomial is (aλ)(bλ)(a-\lambda)(b-\lambda). Why: the determinant of a diagonal matrix is the product of the diagonal.
    2. Roots: λ1=3\lambda_1 = 3 and λ2=2\lambda_2 = 2. No need for quadratic formula.
    3. Eigenvectors: each coordinate axis. A(1,0)=(3,0)=3(1,0)A(1,0) = (3,0) = 3(1,0).

    Shortcut: diagonal matrix — eigenvalues are on the diagonal and eigenvectors are the canonical basis vectors.

  2. Ex. 114.2Application

    Compute the eigenvalues of A=(4123)A = \begin{pmatrix} 4 & 1 \\ 2 & 3 \end{pmatrix} and find the corresponding eigenvectors.

    Select the correct option
    Select an option first
    Show solution
    Polynomial: det(AλI)=(4λ)(3λ)2=λ27λ+10=(λ5)(λ2)\det(A - \lambda I) = (4-\lambda)(3-\lambda) - 2 = \lambda^2 - 7\lambda + 10 = (\lambda-5)(\lambda-2). Eigenvalues: λ1=5\lambda_1 = 5, λ2=2\lambda_2 = 2. For λ=5\lambda=5: eigenvector (1,1)(1,1). For λ=2\lambda=2: eigenvector (1,2)(1,-2).
  3. Ex. 114.3ApplicationAnswer key

    Compute the eigenvalues of A=(1221)A = \begin{pmatrix} 1 & 2 \\ 2 & 1 \end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Polynomial: (1λ)24=λ22λ3=(λ3)(λ+1)(1-\lambda)^2 - 4 = \lambda^2 - 2\lambda - 3 = (\lambda-3)(\lambda+1). Eigenvalues: λ1=3\lambda_1 = 3, λ2=1\lambda_2 = -1. Eigenvectors: (1,1)(1,1) and (1,1)(1,-1).
  4. Ex. 114.4Application

    Compute the eigenvalues and eigenvectors of A=(0110)A = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Polynomial: (0λ)21=λ21=(λ1)(λ+1)(0-\lambda)^2 - 1 = \lambda^2 - 1 = (\lambda-1)(\lambda+1). Eigenvalues: λ1=1\lambda_1 = 1 and λ2=1\lambda_2 = -1. For λ=1\lambda=1: (1,1)(1,1). For λ=1\lambda=-1: (1,1)(1,-1). This is the reflection matrix in the angle bisector.
  5. Ex. 114.5Application

    Compute the eigenvalues of A=(4211)A = \begin{pmatrix} 4 & -2 \\ 1 & 1 \end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Polynomial: (4λ)(1λ)+2=λ25λ+6=(λ3)(λ2)(4-\lambda)(1-\lambda) + 2 = \lambda^2 - 5\lambda + 6 = (\lambda-3)(\lambda-2). Eigenvalues: 33 and 22. Verification: tr=5=3+2\operatorname{tr} = 5 = 3+2; det=6=32\det = 6 = 3 \cdot 2.
    Show step-by-step (with the why)
    1. Set up AλI=(4λ211λ)A - \lambda I = \begin{pmatrix} 4-\lambda & -2 \\ 1 & 1-\lambda \end{pmatrix}.
    2. Compute the determinant: (4λ)(1λ)(2)(1)=λ25λ+6(4-\lambda)(1-\lambda) - (-2)(1) = \lambda^2 - 5\lambda + 6.
    3. Factor: (λ3)(λ2)=0(\lambda-3)(\lambda-2) = 0, roots 33 and 22.
    4. Check with sum and product of diagonal elements.

    Mental shortcut: for 2×22 \times 2, use the formula λ2tr(A)λ+det(A)=0\lambda^2 - \operatorname{tr}(A)\lambda + \det(A) = 0 directly.

  6. Ex. 114.6ApplicationAnswer key

    Compute the eigenvalues and eigenvectors of A=(5445)A = \begin{pmatrix} 5 & 4 \\ 4 & 5 \end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Polynomial: (5λ)216=λ210λ+9=(λ9)(λ1)(5-\lambda)^2 - 16 = \lambda^2 - 10\lambda + 9 = (\lambda-9)(\lambda-1). Eigenvalues: 99 and 11. Eigenvectors: (1,1)(1,1) and (1,1)(1,-1), orthogonal (expected for symmetric).
  7. Ex. 114.7ApplicationAnswer key

    Analyze the diagonalizability of A=(2102)A = \begin{pmatrix} 2 & 1 \\ 0 & 2 \end{pmatrix}. Compute algebraic and geometric multiplicity.

    Select the correct option
    Select an option first
    Show solution
    Upper triangular: eigenvalues on diagonal, λ1=2\lambda_1 = 2, λ2=2\lambda_2 = 2 (multiplicity 2). Eigenspace: (A2I)=(0100)(A - 2I) = \begin{pmatrix} 0 & 1 \\ 0 & 0 \end{pmatrix}, dim=1\dim = 1. So mg=1<ma=2m_g = 1 < m_a = 2 — not diagonalizable.
  8. Ex. 114.8ApplicationAnswer key

    Compute the eigenvalues of A=(6123)A = \begin{pmatrix} 6 & -1 \\ 2 & 3 \end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Polynomial: det(AλI)=(6λ)(3λ)(1)(2)=(6λ)(3λ)+2=λ29λ+20\det(A-\lambda I) = (6-\lambda)(3-\lambda) - (-1)(2) = (6-\lambda)(3-\lambda) + 2 = \lambda^2 - 9\lambda + 20. Factoring: (λ5)(λ4)=0(\lambda-5)(\lambda-4) = 0. Eigenvalues: λ1=5\lambda_1 = 5 and λ2=4\lambda_2 = 4. Verification: tr=9=5+4\operatorname{tr} = 9 = 5+4; det=20=54\det = 20 = 5 \cdot 4.
  9. Ex. 114.9Application

    Compute the eigenvalues of A=(100020003)A = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 3 \end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Triangular: eigenvalues 1,2,31, 2, 3 (on diagonal). Eigenvectors: e1,e2,e3e_1, e_2, e_3 of canonical basis.
  10. Ex. 114.10Application

    Compute the eigenvalues of A=(200130114)A = \begin{pmatrix} 2 & 0 & 0 \\ 1 & 3 & 0 \\ 1 & 1 & 4 \end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Lower triangular: eigenvalues on diagonal: 2,3,42, 3, 4. Verification: tr=9=2+3+4\operatorname{tr} = 9 = 2+3+4; det=24=234\det = 24 = 2\cdot3\cdot4.
  11. Ex. 114.11ApplicationAnswer key

    Compute the eigenvalues of A=(0100)A = \begin{pmatrix} 0 & 1 \\ 0 & 0 \end{pmatrix} and determine if it is diagonalizable.

    Select the correct option
    Select an option first
    Show solution
    Nilpotent of order 2: A2=0A^2 = 0. Polynomial: (λ)2=λ2(-\lambda)^2 = \lambda^2. Unique eigenvalue: λ=0\lambda = 0 with ma=2m_a = 2. Eigenspace: kerA=span{(1,0)}\ker A = \operatorname{span}\{(1,0)\}, mg=1m_g = 1 — not diagonalizable.
  12. Ex. 114.12ApplicationAnswer key

    Compute the eigenvalues of A=(111111111)A = \begin{pmatrix} 1 & 1 & 1 \\ 1 & 1 & 1 \\ 1 & 1 & 1 \end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Matrix of ones: tr=3\operatorname{tr} = 3, det=0\det = 0. So λ1=3\lambda_1 = 3 and λ2=λ3=0\lambda_2 = \lambda_3 = 0. Eigenvector of λ=3\lambda=3: (1,1,1)(1,1,1). Eigenspace of λ=0\lambda=0: kerA\ker A, dimension 2. Diagonalizable.
    Show step-by-step (with the why)
    1. Note that every row of the matrix is (1,1,1)(1,1,1), so rank=1\operatorname{rank} = 1.
    2. This implies dimkerA=2\dim\ker A = 2, so λ=0\lambda = 0 with mg2m_g \geq 2.
    3. Sum of all eigenvalues = tr=3\operatorname{tr} = 3, so the third eigenvalue is 33.
    4. Check: A(1,1,1)T=(3,3,3)T=3(1,1,1)TA(1,1,1)^T = (3,3,3)^T = 3(1,1,1)^T.

    Curious fact: rank-1 matrices always have n1n-1 zero eigenvalues and one eigenvalue equal to the trace.

  13. Ex. 114.13Application

    If A=(0110)A = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} has eigenvalues 11 and 1-1, what are the eigenvalues of A10A^{10}? Compute A10A^{10}.

    Select the correct option
    Select an option first
    Show solution
    If Av=λvA\vec{v} = \lambda\vec{v}, then Akv=λkvA^k\vec{v} = \lambda^k\vec{v}. Eigenvalues of A10A^{10}: 110=11^{10} = 1 and (1)10=1(-1)^{10} = 1. So A10A^{10} has eigenvalue 11 with multiplicity 2, meaning A10=IA^{10} = I.
  14. Ex. 114.14Application

    A matrix AA has eigenvalues 22 and 33. What are the eigenvalues of A2+IA^2 + I?

    Select the correct option
    Select an option first
    Show solution
    If eigenvalues of AA are 22 and 33, then eigenvalues of A2A^2 are 44 and 99, and eigenvalues of A2+IA^2 + I are 55 and 1010. (Polynomial in matrix shifts eigenvalues.)
  15. Ex. 114.15Application

    A 3×33 \times 3 matrix has eigenvalues 11, 22, 44. Compute detA\det A and tr(A)\operatorname{tr}(A).

    Select the correct option
    Select an option first
    Show solution
    If eigenvalues are 1,2,41, 2, 4: detA=124=8\det A = 1 \cdot 2 \cdot 4 = 8 and tr(A)=1+2+4=7\operatorname{tr}(A) = 1+2+4 = 7.
  16. Ex. 114.16Application

    A 2×22 \times 2 matrix has tr(A)=5\operatorname{tr}(A) = 5 and detA=6\det A = 6. Compute the eigenvalues.

    Select the correct option
    Select an option first
    Show solution
    Polynomial: λ2trλ+det=λ25λ+6=(λ3)(λ2)\lambda^2 - \operatorname{tr}\lambda + \det = \lambda^2 - 5\lambda + 6 = (\lambda-3)(\lambda-2). Eigenvalues 33 and 22.
  17. Ex. 114.17Application

    Prove that if λ\lambda is an eigenvalue of invertible AA, then 1/λ1/\lambda is an eigenvalue of A1A^{-1}.

    Select the correct option
    Select an option first
    Show solution
    If λ\lambda is an eigenvalue of invertible AA, then 1/λ1/\lambda is an eigenvalue of A1A^{-1}. Proof: Av=λvv=λA1vA1v=(1/λ)vA\vec{v} = \lambda\vec{v} \Rightarrow \vec{v} = \lambda A^{-1}\vec{v} \Rightarrow A^{-1}\vec{v} = (1/\lambda)\vec{v}.
    Show step-by-step (with the why)
    1. Start with Av=λvA\vec{v} = \lambda\vec{v} with λ0\lambda \neq 0 (guaranteed since AA invertible).
    2. Apply A1A^{-1} to both sides: v=λA1v\vec{v} = \lambda A^{-1}\vec{v}.
    3. Divide by λ\lambda: A1v=(1/λ)vA^{-1}\vec{v} = (1/\lambda)\vec{v}.

    Remark: the same eigenvector v\vec{v} works for both AA and A1A^{-1}; only the eigenvalue changes to its reciprocal.

  18. Ex. 114.18Application

    Compute the eigenvalues of the rotation matrix Rθ=(cosθsinθsinθcosθ)R_\theta = \begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix} for θ(0,π)\theta \in (0, \pi).

    Select the correct option
    Select an option first
    Show solution
    Rotation by θ0,π\theta \neq 0, \pi: polynomial λ22cosθλ+1=0\lambda^2 - 2\cos\theta\,\lambda + 1 = 0. Discriminant: 4cos2θ4=4sin2θ<04\cos^2\theta - 4 = -4\sin^2\theta < 0. No real eigenvalues. Complex eigenvalues: e±iθe^{\pm i\theta}.
  19. Ex. 114.19Understanding

    Explain why a matrix with detA=0\det A = 0 necessarily has 00 as an eigenvalue.

    Select the correct option
    Select an option first
    Show solution
    detA=0\det A = 0 means AA is singular, so Ax=0Ax = 0 has a nontrivial solution v0\vec{v} \neq 0. This means exactly Av=0=0vA\vec{v} = 0 = 0 \cdot \vec{v}, that is λ=0\lambda = 0 is an eigenvalue.
  20. Ex. 114.20Understanding

    Show that AA and ATA^T have the same characteristic polynomial (and thus the same eigenvalues).

    Select the correct option
    Select an option first
    Show solution
    det(ATλI)=det((AλI)T)=det(AλI)\det(A^T - \lambda I) = \det((A - \lambda I)^T) = \det(A - \lambda I) since detM=detMT\det M = \det M^T for any matrix. So AA and ATA^T have the same characteristic polynomial and thus the same eigenvalues. But the eigenvectors generally differ.
  21. Ex. 114.21Understanding

    If B=P1APB = P^{-1}AP (similar matrices), what can you conclude about the eigenvalues and eigenvectors of AA and BB?

    Select the correct option
    Select an option first
    Show solution
    If B=P1APB = P^{-1}AP, then det(BλI)=det(P1APλI)=det(P1(AλI)P)=det(AλI)\det(B - \lambda I) = \det(P^{-1}AP - \lambda I) = \det(P^{-1}(A-\lambda I)P) = \det(A - \lambda I). Same polynomial, same eigenvalues. If Av=λvA\vec{v} = \lambda\vec{v}, then B(P1v)=λ(P1v)B(P^{-1}\vec{v}) = \lambda(P^{-1}\vec{v}), so the eigenvectors of BB are P1vP^{-1}\vec{v}. Answer: B.
  22. Ex. 114.22Understanding

    If A2=IA^2 = I, what are the only possible eigenvalues of AA?

    Select the correct option
    Select an option first
    Show solution
    If A2=IA^2 = I and Av=λvA\vec{v} = \lambda\vec{v}, then λ2v=A2v=Iv=v\lambda^2\vec{v} = A^2\vec{v} = I\vec{v} = \vec{v}, so λ2=1\lambda^2 = 1 and λ=±1\lambda = \pm 1. Answer: B.
  23. Ex. 114.23Understanding

    What are the eigenvalues of an orthogonal projection PP (with P2=PP^2 = P)?

    Select the correct option
    Select an option first
    Show solution
    If PP is orthogonal projection, P2=PP^2 = P. Then λ2=λ\lambda^2 = \lambda, so λ(λ1)=0\lambda(\lambda-1) = 0: eigenvalues are 00 or 11. Vectors in the projected subspace have λ=1\lambda=1; vectors in the complement have λ=0\lambda=0. Answer: B.
  24. Ex. 114.24Understanding

    Prove that eigenvectors of distinct eigenvalues are linearly independent (case of two eigenvectors).

    Select the correct option
    Select an option first
    Show solution
    Suppose Av1=λ1v1A\vec{v}_1 = \lambda_1\vec{v}_1 and Av2=λ2v2A\vec{v}_2 = \lambda_2\vec{v}_2 with λ1λ2\lambda_1 \neq \lambda_2. If α1v1+α2v2=0\alpha_1\vec{v}_1 + \alpha_2\vec{v}_2 = 0, apply AA: α1λ1v1+α2λ2v2=0\alpha_1\lambda_1\vec{v}_1 + \alpha_2\lambda_2\vec{v}_2 = 0. Subtract λ2\lambda_2 times the first equation: α1(λ1λ2)v1=0\alpha_1(\lambda_1-\lambda_2)\vec{v}_1 = 0. Since λ1λ2\lambda_1 \neq \lambda_2 and v10\vec{v}_1 \neq 0: α1=0\alpha_1 = 0, so α2=0\alpha_2 = 0.
    Show step-by-step (with the why)
    1. Suppose linear dependence: α1v1+α2v2=0\alpha_1\vec{v}_1 + \alpha_2\vec{v}_2 = \vec{0} with (α1,α2)(0,0)(\alpha_1, \alpha_2) \neq (0,0).
    2. Apply AA: α1λ1v1+α2λ2v2=0\alpha_1\lambda_1\vec{v}_1 + \alpha_2\lambda_2\vec{v}_2 = \vec{0}.
    3. Subtract λ2\lambda_2 times the original equation: α1(λ1λ2)v1=0\alpha_1(\lambda_1 - \lambda_2)\vec{v}_1 = \vec{0}.
    4. Since λ1λ2\lambda_1 \neq \lambda_2 and v10\vec{v}_1 \neq \vec{0}: α1=0\alpha_1 = 0, so α2=0\alpha_2 = 0. Contradiction.

    Shortcut: this argument generalizes by induction to any number of eigenvectors of distinct eigenvalues.

  25. Ex. 114.25Understanding

    Show that real eigenvalues of an orthogonal matrix QQ (with QTQ=IQ^T Q = I) satisfy λ=1|\lambda| = 1.

    Select the correct option
    Select an option first
    Show solution
    Orthogonal matrices preserve norms: Qv=v\|Q\vec{v}\| = \|\vec{v}\|. If Qv=λvQ\vec{v} = \lambda\vec{v}, then λv=λv=Qv=v|\lambda|\|\vec{v}\| = \|\lambda\vec{v}\| = \|Q\vec{v}\| = \|\vec{v}\|, so λ=1|\lambda| = 1. Real eigenvalues: ±1\pm 1.
  26. Ex. 114.26Modeling

    A Markov chain of two regions (Southeast and Northeast) has transition matrix P=(0.70.30.40.6)P = \begin{pmatrix} 0.7 & 0.3 \\ 0.4 & 0.6 \end{pmatrix}. Find the stationary distribution via the eigenvector of λ=1\lambda = 1.

    Select the correct option
    Select an option first
    Show solution
    Transition matrix: P=(0.70.30.40.6)P = \begin{pmatrix} 0.7 & 0.3 \\ 0.4 & 0.6 \end{pmatrix}. Stationary distribution: eigenvector of λ=1\lambda = 1. Solve (PI)π=0(P - I)\pi = 0: 0.3π1+0.3π2=0-0.3\pi_1 + 0.3\pi_2 = 0π1=π2\pi_1 = \pi_2. Normalize: π=(0.5,0.5)\pi = (0.5, 0.5). Long run: 50% rainy, 50% sunny.
    Show step-by-step (with the why)
    1. Every stochastic matrix has λ=1\lambda = 1 as an eigenvalue. Why: the sum of each column is 1, so 1TP=1T\mathbf{1}^T P = \mathbf{1}^T.
    2. Set up (PI)π=0(P - I)\pi = \vec{0} and row-reduce.
    3. Normalize by the condition π1+π2=1\pi_1 + \pi_2 = 1.
    4. Verify: Pπ=πP\pi = \pi.

    Curious fact: this is the foundation of Google's PageRank — the stationary distribution of the Markov chain where pages are states and links are transitions.

  27. Ex. 114.27Modeling

    The Fibonacci sequence is generated by A=(1110)A = \begin{pmatrix} 1 & 1 \\ 1 & 0 \end{pmatrix}. Compute the eigenvalues and explain the growth of the sequence.

    Select the correct option
    Select an option first
    Show solution
    Fibonacci polynomial: pA(λ)=λ2λ1=0p_A(\lambda) = \lambda^2 - \lambda - 1 = 0. Roots: ϕ=(1+5)/21.618\phi = (1+\sqrt{5})/2 \approx 1.618 (golden ratio) and ψ=(15)/20.618\psi = (1-\sqrt{5})/2 \approx -0.618. Since ϕ>1|\phi| > 1, the sequence grows without bound. Since ψ<1|\psi| < 1, the $\\psi$-term decays to zero.
  28. Ex. 114.28ModelingAnswer key

    For the control system x˙=Ax\dot{x} = Ax with A=(2103)A = \begin{pmatrix} -2 & 1 \\ 0 & -3 \end{pmatrix}: verify stability by analyzing the eigenvalues.

    Select the correct option
    Select an option first
    Show solution
    For A=(2103)A = \begin{pmatrix} -2 & 1 \\ 0 & -3 \end{pmatrix}, eigenvalues are 2-2 and 3-3 (diagonal). Both have negative real part (2<0-2 < 0 and 3<0-3 < 0). So the system x˙=Ax\dot{x} = Ax is asymptotically stable — all solutions converge to zero.
  29. Ex. 114.29Modeling

    A Hessian matrix at a critical point is H=(2005)H = \begin{pmatrix} -2 & 0 \\ 0 & -5 \end{pmatrix}. Identify the eigenvalues and classify the critical point (maximum/minimum/saddle).

    Select the correct option
    Select an option first
    Show solution
    Given A=(2005)A = \begin{pmatrix} -2 & 0 \\ 0 & -5 \end{pmatrix} (diagonal, symmetric): eigenvalues 2-2 and 5-5, both negative. So AA is negative definite. This means the system x˙=Ax\dot{x} = Ax is stable and A-A is positive definite (would be a Hessian of a minimum).
  30. Ex. 114.30ModelingAnswer key

    For a path graph with 3 nodes (1—2—3), set up the Laplacian L=DWL = D - W, compute the eigenvalues, and identify the number of connected components.

    Select the correct option
    Select an option first
    Show solution
    Laplacian of path graph with 3 nodes: L=(110121011)L = \begin{pmatrix} 1 & -1 & 0 \\ -1 & 2 & -1 \\ 0 & -1 & 1 \end{pmatrix}. Eigenvalues: 0,1,30, 1, 3. The eigenvalue λ=0\lambda = 0 has multiplicity 1 — confirms the graph has 1 connected component. Eigenvector of λ=0\lambda=0: (1,1,1)(1,1,1).
    Show step-by-step (with the why)
    1. Set up the Laplacian L=DWL = D - W where DD is diagonal of degrees and WW the adjacency matrix.
    2. For the path 1-2-3: nodes 1 and 3 have degree 1; node 2 has degree 2.
    3. Compute det(LλI)=0\det(L - \lambda I) = 0.
    4. Observe: LL always has λ=0\lambda = 0 (sum of rows is zero). Number of components = multiplicity of λ=0\lambda = 0.

    Curious fact: the second smallest eigenvalue of the Laplacian (Fiedler value) measures how well-connected the graph is — foundation of spectral clustering in machine learning.

  31. Ex. 114.31ModelingAnswer key

    Prove that if λ\lambda is an eigenvalue of AA with eigenvector v\vec{v}, then λ+c\lambda + c is an eigenvalue of A+cIA + cI with the same eigenvector v\vec{v}.

    Select the correct option
    Select an option first
    Show solution
    If λ\lambda is an eigenvalue of AA with eigenvector v\vec{v}, then for A+cIA + cI: (A+cI)v=Av+cv=λv+cv=(λ+c)v(A+cI)\vec{v} = A\vec{v} + c\vec{v} = \lambda\vec{v} + c\vec{v} = (\lambda+c)\vec{v}. So λ+c\lambda + c is an eigenvalue of A+cIA + cI, with the same eigenvector.
  32. Ex. 114.32Modeling

    In finance, the covariance matrix of two identical stocks with variance σ2\sigma^2 and correlation ρ\rho is Σ=σ2(1ρρ1)\Sigma = \sigma^2 \begin{pmatrix} 1 & \rho \\ \rho & 1 \end{pmatrix}. Compute the eigenvalues and interpret.

    Select the correct option
    Select an option first
    Show solution
    The covariance matrix of two stocks with equal variance σ2\sigma^2 and correlation ρ\rho is Σ=σ2(1ρρ1)\Sigma = \sigma^2\begin{pmatrix}1 & \rho \\ \rho & 1\end{pmatrix}. Eigenvalues: σ2(1+ρ)\sigma^2(1+\rho) and σ2(1ρ)\sigma^2(1-\rho). Eigenvectors: (1,1)(1,1) (common factor) and (1,1)(1,-1) (differential factor).
  33. Ex. 114.33Challenge

    Prove that if λ\lambda is an eigenvalue of AA with eigenvector v\vec{v}, then λk\lambda^k is an eigenvalue of AkA^k for every positive integer kk.

    Select the correct option
    Select an option first
    Show solution
    Let Av=λvA\vec{v} = \lambda\vec{v}. Apply A2A^2: A2v=A(Av)=A(λv)=λAv=λ2vA^2\vec{v} = A(A\vec{v}) = A(\lambda\vec{v}) = \lambda A\vec{v} = \lambda^2\vec{v}. By induction: Akv=λkvA^k\vec{v} = \lambda^k\vec{v}. So λk\lambda^k is an eigenvalue of AkA^k with the same eigenvector v\vec{v}.
  34. Ex. 114.34ChallengeAnswer key

    Prove that eigenvalues of an idempotent matrix (A2=AA^2 = A) are only 00 or 11.

    Select the correct option
    Select an option first
    Show solution
    If AA is idempotent (A2=AA^2 = A) and Av=λvA\vec{v} = \lambda\vec{v}, then λ2v=A2v=Av=λv\lambda^2\vec{v} = A^2\vec{v} = A\vec{v} = \lambda\vec{v}, so λ2=λ\lambda^2 = \lambda and λ{0,1}\lambda \in \{0, 1\}. Examples: orthogonal projections are idempotent.
    Show step-by-step (with the why)
    1. Use A2v=A(λv)=λ2vA^2\vec{v} = A(\lambda\vec{v}) = \lambda^2\vec{v} (result of previous exercise).
    2. Use A2=AA^2 = A: thus A2v=Av=λvA^2\vec{v} = A\vec{v} = \lambda\vec{v}.
    3. Combine: λ2v=λv\lambda^2\vec{v} = \lambda\vec{v}, that is (λ2λ)v=0(\lambda^2 - \lambda)\vec{v} = \vec{0}.
    4. Since v0\vec{v} \neq \vec{0}: λ(λ1)=0\lambda(\lambda-1) = 0.

    Remark: idempotent matrices are exactly the projections (not necessarily orthogonal).

  35. Ex. 114.35Challenge

    Construct a 2×22 \times 2 matrix with eigenvalues 11 and 1-1 such that (1,1)(1, 1) is an eigenvector of λ=1\lambda = 1 and (1,1)(1, -1) is an eigenvector of λ=1\lambda = -1.

    Select the correct option
    Select an option first
    Show solution
    Find 2×22 \times 2 with eigenvalues λ1=1\lambda_1 = 1, λ2=1\lambda_2 = -1 and eigenvectors v1=(1,1)\vec{v}_1 = (1,1), v2=(1,1)\vec{v}_2 = (1,-1). Construct A=PDP1A = PDP^{-1} where P=(1111)P = \begin{pmatrix} 1 & 1 \\ 1 & -1 \end{pmatrix}, D=(1001)D = \begin{pmatrix} 1 & 0 \\ 0 & -1 \end{pmatrix}. Result: A=(0110)A = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}.
  36. Ex. 114.36Challenge

    Prove that eigenvectors of a symmetric matrix corresponding to distinct eigenvalues are orthogonal.

    Select the correct option
    Select an option first
    Show solution
    If AA symmetric and Av1=λ1v1A\vec{v}_1 = \lambda_1\vec{v}_1, Av2=λ2v2A\vec{v}_2 = \lambda_2\vec{v}_2 with λ1λ2\lambda_1 \neq \lambda_2: λ1(v1v2)=(Av1)v2=v1(Av2)=λ2(v1v2)\lambda_1(\vec{v}_1 \cdot \vec{v}_2) = (A\vec{v}_1) \cdot \vec{v}_2 = \vec{v}_1 \cdot (A\vec{v}_2) = \lambda_2(\vec{v}_1 \cdot \vec{v}_2). Thus (λ1λ2)(v1v2)=0(\lambda_1 - \lambda_2)(\vec{v}_1 \cdot \vec{v}_2) = 0. Since λ1λ2\lambda_1 \neq \lambda_2: v1v2=0\vec{v}_1 \cdot \vec{v}_2 = 0.
  37. Ex. 114.37Proof

    Prove that a triangular matrix (upper or lower) has eigenvalues equal to the diagonal elements.

    Select the correct option
    Select an option first
    Show solution
    Upper triangular matrix AA with diagonal a11,,anna_{11}, \ldots, a_{nn}. The determinant of AλIA - \lambda I (also triangular) is the product of the diagonal: pA(λ)=(a11λ)(a22λ)(annλ)p_A(\lambda) = (a_{11}-\lambda)(a_{22}-\lambda)\cdots(a_{nn}-\lambda). The roots are exactly the diagonal elements.
    Show step-by-step (with the why)
    1. Note that AλIA - \lambda I is triangular (upper or lower) with diagonal (aiiλ)(a_{ii} - \lambda). Why: subtracting λ\lambda from the diagonal of a triangular matrix doesn't change triangular structure.
    2. The determinant of a triangular matrix is the product of diagonal elements: det(AλI)=i=1n(aiiλ)\det(A-\lambda I) = \prod_{i=1}^n (a_{ii} - \lambda).
    3. The roots of (aiiλ)=0\prod (a_{ii}-\lambda) = 0 are λ=aii\lambda = a_{ii} for i=1,,ni = 1,\ldots,n.

    Shortcut: this result holds for upper and lower triangular. Applies immediately to diagonal matrices as a special case.

  38. Ex. 114.38Proof

    Prove (by induction) that eigenvectors corresponding to kk distinct eigenvalues are linearly independent.

    Select the correct option
    Select an option first
    Show solution
    Let λ1,,λk\lambda_1, \ldots, \lambda_k be eigenvalues of AA with corresponding eigenvectors v1,,vk\vec{v}_1, \ldots, \vec{v}_k, all distinct. Prove by induction on kk. Base k=1k=1: one nonzero eigenvector is LI by definition. Step: assume v1,,vk1\vec{v}_1, \ldots, \vec{v}_{k-1} are LI. If i=1kαivi=0\sum_{i=1}^k \alpha_i \vec{v}_i = 0, apply AλkIA - \lambda_k I and use the induction hypothesis to conclude αi=0\alpha_i = 0 for all ii.
  39. Ex. 114.39Proof

    Prove that every real symmetric matrix has only real eigenvalues.

    Select the correct option
    Select an option first
    Show solution
    For AA symmetric and eigenvalue λ\lambda: suppose λC\lambda \in \mathbb{C}, Av=λvA\vec{v} = \lambda\vec{v}. Take the conjugate: Avˉ=λˉvˉA\bar{\vec{v}} = \bar{\lambda}\bar{\vec{v}} (since AA is real). Then λˉ(vvˉ)=(Av)vˉ=v(Avˉ)=λ(vvˉ)\bar{\lambda}(\vec{v} \cdot \bar{\vec{v}}) = (A\vec{v}) \cdot \bar{\vec{v}} = \vec{v} \cdot (A\bar{\vec{v}}) = \lambda(\vec{v} \cdot \bar{\vec{v}}). Since v2=vvˉ>0\|\vec{v}\|^2 = \vec{v} \cdot \bar{\vec{v}} > 0: λˉ=λ\bar{\lambda} = \lambda, so λR\lambda \in \mathbb{R}.
    Show step-by-step (with the why)
    1. Suppose λC\lambda \in \mathbb{C} and Av=λvA\vec{v} = \lambda\vec{v}.
    2. Take the inner product of both sides with vˉ\bar{\vec{v}}: Av,vˉ=λv2\langle A\vec{v}, \bar{\vec{v}}\rangle = \lambda\|\vec{v}\|^2.
    3. Use symmetry of AA: Av,vˉ=v,Avˉ=λˉv2\langle A\vec{v}, \bar{\vec{v}}\rangle = \langle\vec{v}, A\bar{\vec{v}}\rangle = \bar{\lambda}\|\vec{v}\|^2.
    4. Therefore λ=λˉ\lambda = \bar{\lambda}, that is λR\lambda \in \mathbb{R}.

    Remark: this is the spectral theorem for real symmetric matrices — they always have real eigenvalues and orthogonal eigenvectors (see Lesson 116).

  40. Ex. 114.40Application

    For A=(211121112)A = \begin{pmatrix} 2 & 1 & 1 \\ 1 & 2 & 1 \\ 1 & 1 & 2 \end{pmatrix} with characteristic polynomial (4λ)(1λ)2(4-\lambda)(1-\lambda)^2, determine all eigenvalues, their algebraic and geometric multiplicities, and decide if AA is diagonalizable.

    Select the correct option
    Select an option first
    Show solution
    Characteristic polynomial given: pA(λ)=(4λ)(1λ)2p_A(\lambda) = (4-\lambda)(1-\lambda)^2. Eigenvalues: λ1=4\lambda_1 = 4 (algebraic multiplicity 1) and λ2=1\lambda_2 = 1 (algebraic multiplicity 2). For λ=1\lambda = 1: (AI)(A - I) has rank 1 (since A=(211121112)A = \begin{pmatrix}2&1&1\\1&2&1\\1&1&2\end{pmatrix} and AI=(111111111)A - I = \begin{pmatrix}1&1&1\\1&1&1\\1&1&1\end{pmatrix}). So kernel dimension = 2, meaning mg(1)=2=ma(1)m_g(1) = 2 = m_a(1). For λ=4\lambda = 4: eigenvector (1,1,1)T(1,1,1)^T.
    Show step-by-step (with the why)
    1. Polynomial given: (4λ)(1λ)2=0(4-\lambda)(1-\lambda)^2 = 0. Roots: λ1=4\lambda_1 = 4, λ2=1\lambda_2 = 1 (double). Why: read the roots directly from the factored polynomial.
    2. For λ=1\lambda = 1: compute AIA - I: each entry is aijδija_{ij} - \delta_{ij}. Result: matrix in which each row is (1,1,1)(1,1,1). Rank = 1, so kernel has dimension 31=23 - 1 = 2.
    3. Since mg(1)=2=ma(1)m_g(1) = 2 = m_a(1) and mg(4)=1=ma(4)m_g(4) = 1 = m_a(4), we have 3 linearly independent eigenvectors — the matrix is diagonalizable.

    Shortcut: to check the dimension of eigenspace, compute rank of AλIA - \lambda I by row reduction; mg=nrankm_g = n - \text{rank}.

Sources

Updated on 2026-05-06 · Author(s): Clube da Matemática

Found an error? Open an issue on GitHub or submit a PR — open source forever.