Eigenvalues and Eigenvectors#
6. Eigenvalues and Eigenvectors#
6.1 What Are Eigenvalues and Eigenvectors?#
In linear algebra, eigenvalues and eigenvectors are fundamental concepts used to analyze the behavior of linear transformations. For a square matrix
Mathematically, the relationship is expressed as:
[
A \mathbf{v} = \lambda \mathbf{v}
]
Where:
-
-
-
6.2 Finding Eigenvalues#
To find the eigenvalues of a matrix
[
\text{det}(A - \lambda I) = 0
]
Where:
-
-
-
This equation is a polynomial in
6.3 Finding Eigenvectors#
Once the eigenvalues
[
(A - \lambda I) \mathbf{v} = 0
]
This equation gives a system of linear equations whose solution gives the eigenvectors.
Example 1: Finding Eigenvalues and Eigenvectors of a 2x2 Matrix#
Given the matrix:
[
A =
]
Step 1: Find the eigenvalues by solving the characteristic equation.
The characteristic equation is:
[
\text{det}(A - \lambda I) = 0
]
[
A - \lambda I =
]
Now, calculate the determinant:
[
\text{det}(A - \lambda I) = (4 - \lambda)(3 - \lambda) - (2)(1) = 0
]
[
(4 - \lambda)(3 - \lambda) - 2 = 0
]
[
12 - 7\lambda + \lambda^2 - 2 = 0
]
[
\lambda^2 - 7\lambda + 10 = 0
]
Solve the quadratic equation:
[
\lambda^2 - 7\lambda + 10 = 0
]
Using the quadratic formula:
[
\lambda = \frac{-(-7) \pm \sqrt{(-7)^2 - 4(1)(10)}}{2(1)}
]
[
\lambda = \frac{7 \pm \sqrt{49 - 40}}{2} = \frac{7 \pm \sqrt{9}}{2}
]
[
\lambda = \frac{7 \pm 3}{2}
]
Thus, the eigenvalues are:
[
\lambda_1 = \frac{7 + 3}{2} = 5, \quad \lambda_2 = \frac{7 - 3}{2} = 2
]
Step 2: Find the eigenvectors corresponding to each eigenvalue.
For
[
(A - 5I) \mathbf{v} = 0
]
[
]
[
]
This simplifies to the system:
[
-v_1 + v_2 = 0 \quad \Rightarrow \quad v_1 = v_2
]
Thus, the eigenvector corresponding to
[
\mathbf{v_1} =
]
For
[
(A - 2I) \mathbf{v} = 0
]
[
]
[
]
This simplifies to the system:
[
2v_1 + v_2 = 0 \quad \Rightarrow \quad v_2 = -2v_1
]
Thus, the eigenvector corresponding to
[
\mathbf{v_2} =
]
Practice Problems#
-
Find the eigenvalues and eigenvectors of the matrix:
[
A =
] -
Find the eigenvalues and eigenvectors of the matrix:
[
B =
] -
Given the matrix:
[
C =
]
Find the eigenvalues and eigenvectors.
Would you like solutions to these problems, or should we move on to Diagonalization of Matrices?
7. Diagonalization of Matrices#
7.1 What is Diagonalization?#
A matrix
[
A = P D P^{-1}
]
Where:
-
-
-
In other words, diagonalization transforms a matrix into a diagonal matrix
7.2 Conditions for Diagonalization#
For a matrix
1. The matrix must be square (i.e., the number of rows and columns must be equal).
2. There must be enough linearly independent eigenvectors to form the matrix
If a matrix does not have enough linearly independent eigenvectors, it is not diagonalizable.
7.3 Steps to Diagonalize a Matrix#
To diagonalize a matrix
1. Find the eigenvalues of
[
\text{det}(A - \lambda I) = 0
]
2. Find the eigenvectors corresponding to each eigenvalue.
3. Form the matrix
4. Form the diagonal matrix
5. Verify the diagonalization by checking if
Example 1: Diagonalizing a 2x2 Matrix#
Consider the matrix:
[
A =
]
Step 1: Find the eigenvalues.
Solve the characteristic equation:
[
\text{det}(A - \lambda I) = 0
]
[
]
The determinant is:
[
(4 - \lambda)(3 - \lambda) - 2 = 0
]
[
12 - 7\lambda + \lambda^2 - 2 = 0
]
[
\lambda^2 - 7\lambda + 10 = 0
]
Solving the quadratic equation:
[
\lambda = \frac{-(-7) \pm \sqrt{(-7)^2 - 4(1)(10)}}{2(1)}
]
[
\lambda = \frac{7 \pm \sqrt{9}}{2} = \frac{7 \pm 3}{2}
]
Thus, the eigenvalues are:
[
\lambda_1 = 5, \quad \lambda_2 = 2
]
Step 2: Find the eigenvectors.
For
[
(A - 5I) \mathbf{v} = 0
]
[
]
This simplifies to:
[
v_1 = v_2
]
So, the eigenvector corresponding to
[
\mathbf{v_1} =
]
For
[
(A - 2I) \mathbf{v} = 0
]
[
]
This simplifies to:
[
v_2 = -2v_1
]
So, the eigenvector corresponding to
[
\mathbf{v_2} =
]
Step 3: Form the matrix
The matrix
[
P =
]
Step 4: Form the diagonal matrix
The diagonal matrix
[
D =
]
Step 5: Verify the diagonalization.
Check if
[
A =
]
You can verify this by performing matrix multiplication, and you should find that it equals
Practice Problems#
-
Diagonalize the matrix:
[
A =
] -
Diagonalize the matrix:
[
B =
] -
Given the matrix:
[
C =
Find its diagonalization.
Would you like solutions to these problems, or should we proceed with Multivariate Calculus?