6.1 Eigenvalues and Eigenvectors
When multiply a vector by this matrix, the vector usually changes direction and magnitude.
For example,
When multiply a vector by this matrix, the vector usually changes direction and magnitude.
For example,
Most matrices have special vectors that preserve their directions after transformation.
direction preserved
same magnitude
same direction
magnitude increased by factor of 5
These vectors that keep their directions are called the eigenvectors of the matrix.
The factors by which their magnitudes change are called the eigenvalues. So, in the above example,
if \( \vec{v} \) is an eigenvector, then \( A\vec{v} \) keeps the same direction but changes magnitude by a factor of \( \lambda \) (lambda).
\( I \): identity matrix
this is a homogeneous eq, which always has solution \( \vec{v} = \vec{0} \) (trivial solution) but we don't want that. to force nontrivial solution, we force multiple solutions
which implies \[ |A - \lambda I| = \det(A - \lambda I) = 0 \]
then use those \( \lambda \)'s to solve for \( \vec{v} \)'s from
First, find eigenvalues:
\[ (7 - \lambda)(-1 - \lambda) - (-3)(4) = 0 \]
characteristic eq.
This is an \( n^{th} \)-order polynomial for an \( n \times n \) matrix.
\[ (\lambda - 5)(\lambda - 1) = 0 \]
eigenvalues of A
Now find the associated eigenvectors:
Solve \( (A - \lambda I)\vec{v} = \vec{0} \) for each \( \lambda \).
\[ \vec{v} = \begin{bmatrix} x_1 \\ x_2 \end{bmatrix} \quad \begin{aligned} x_2 &= r \text{ (free)} \\ x_1 &\mapsto \text{row 1: } 3x_1 + 2x_2 = 0 \\ x_1 &= -\frac{2}{3}x_2 = -\frac{2}{3}r \end{aligned} \]
\[ \text{so, } \vec{v} = \begin{bmatrix} -\frac{2}{3}r \\ r \end{bmatrix} = r \begin{bmatrix} -\frac{2}{3} \\ 1 \end{bmatrix} \]
Choose any convenient \( r \neq 0 \).
Here, let's use \( r = -3 \).
\[ \text{so, } \vec{v} = \begin{bmatrix} 2 \\ -3 \end{bmatrix}, \quad \lambda = 1 \]
solve \( (A - \lambda I) \vec{v} = \vec{0} \)
\( x_2 = r \)
\( x_1 + 2x_2 = 0 \implies x_1 = -2x_2 = -2r \)
choose \( r = 1 \)
\[ \vec{v} = \begin{bmatrix} -2 \\ 1 \end{bmatrix}, \lambda = 5 \]
solve \( \det(A - \lambda I) = 0 \)
\[ (1 - \lambda) [ (4 - \lambda)(1 - \lambda) - (-2)(1) ] = 0 \]
\[ (1 - \lambda) (\lambda^2 - 5\lambda + 6) = 0 \]
\[ (1 - \lambda) (\lambda - 2) (\lambda - 3) = 0 \]
\( \lambda = 1, 2, 3 \)
\( 3 \times 3 \rightarrow 3 \text{ } \lambda \text{'s} \)
Solve \((A - \lambda I)\vec{v} = \vec{0}\) for each \(\lambda\)
\((A - \lambda I)\vec{v} = \vec{0}\)
\(x_2 = r\)
row 2: \(x_3 = 0\)
row 1: \(x_1 = 0\)
\(\vec{v} = \begin{bmatrix} 0 \\ r \\ 0 \end{bmatrix}\)
Choose \(r = 1\)
\(\vec{v} = \begin{bmatrix} 0 \\ 1 \\ 0 \end{bmatrix}, \lambda = 1\)
this eigenvector spans an eigenspace of dimension 1
\(\lambda = 2 \quad (A - \lambda I)\vec{v} = \vec{0} \dots \vec{v} = \begin{bmatrix} -1 \\ 2 \\ 2 \end{bmatrix}\)
\(\lambda = 3 \quad \dots \vec{v} = \begin{bmatrix} -1 \\ 1 \\ 1 \end{bmatrix}\)
if \(A\) is triangular or diagonal, its eigenvalues are the main diagonal elements
triangular
(main diagonal elements)
\[ \lambda = 2i, -2i \]