Skip to main content

Section 3.5 Eigenvalues and Eigenvectors

Subsection Introduction to Eigenvalues and Eigenvectors

Consider the matrix
\begin{equation*} A = \begin{bmatrix} 7 & -8 \\ 3 & -3 \end{bmatrix}. \end{equation*}
We can compute a few operations with this matrix. For instance
\begin{equation*} A\begin{bmatrix} 1 \\ 1\end{bmatrix} = \begin{bmatrix} 7 & -8 \\ 3 & -3 \end{bmatrix}\begin{bmatrix} 1 \\ 1\end{bmatrix} = \begin{bmatrix} -1\\ 0 \end{bmatrix} \end{equation*}
and
\begin{equation*} A\begin{bmatrix} 2 \\ 1\end{bmatrix} = \begin{bmatrix} 7 & -8 \\ 3 & -3 \end{bmatrix}\begin{bmatrix} 2 \\ 1\end{bmatrix} = \begin{bmatrix} 6\\ 3 \end{bmatrix}. \end{equation*}
This last computation is fairly interesting, because the result we get is the same as 3 times the original vector. However, the matrix \(A\) does not multiply every vector by 3, as seen in the first example and the fact that
\begin{equation*} A\begin{bmatrix} 4 \\ 3 \end{bmatrix} = \begin{bmatrix} 4 \\ 3 \end{bmatrix} \end{equation*}
so \(A\) actually preserves this vector, multiplying it by 1. So, these vectors, \(\begin{bmatrix} 2 \\ 1 \end{bmatrix}\) and \(\begin{bmatrix} 4 \\ 3 \end{bmatrix}\text{,}\) and numbers, \(3\) and \(1\text{,}\) are somehow special for this matrix \(A\text{.}\) With this information, we want to define these vectors as eigenvectors and numbers as eigenvalues of the matrix \(A\text{.}\)

Definition 3.5.1. Eigenvalues and Eigenvectors.

For a square matrix \(A\text{,}\) we say that non-zero vector \(\vec{v}\) is an eigenvector of the matrix \(A\) if there exists a number \(\lambda\) so that
\begin{equation*} A \vec{v} = \lambda\vec{v}. \end{equation*}
In this case, we say that \(\lambda\) is an eigenvalue of \(A\) and it is the corresponding eigenvalue for the eigenvector \(\vec{v}\text{.}\)
Thus, we can say that, for the matrix
\begin{equation*} A = \begin{bmatrix} 7 & -8 \\ 3 & -3 \end{bmatrix}, \end{equation*}
we see that \(\begin{bmatrix}2 \\ 1 \end{bmatrix}\) is an eigenvector with corresponding eigenvalue \(3\text{,}\) and that \(\begin{bmatrix}4 \\ 3 \end{bmatrix}\) is an eigenvector with corresponding eigenvalue \(1\text{.}\)
Why are these important? It turns out that these eigenvalues and eigenvectors characterize the behavior of the matrix \(A\text{.}\) For example, if we wanted to figure out what happens when \(A\) is applied to the vector \(\begin{bmatrix} 6 \\ 4 \end{bmatrix}\text{,}\) we can figure this out as
\begin{align*} A \begin{bmatrix} 6 \\ 4 \end{bmatrix} \amp= A\left( \begin{bmatrix} 4 \\ 3 \end{bmatrix} + \begin{bmatrix} 2 \\ 1 \end{bmatrix} \right) \\ \amp= A \begin{bmatrix} 4 \\ 3 \end{bmatrix} + A\begin{bmatrix} 2 \\ 1 \end{bmatrix} \\ \amp= \begin{bmatrix} 4 \\ 3 \end{bmatrix} + 3\begin{bmatrix} 2 \\ 1 \end{bmatrix} = \begin{bmatrix} 10 \\ 6 \end{bmatrix} \end{align*}
In addition, eigenvectors determine directions in which multiplying by the matrix \(A\) behaves just like scalar multiplication. This idea will be very important for our understanding of systems of differential equations, because we have already seen how to solve a scalar first order equation way back in SectionΒ 0.1 and SectionΒ 1.3.

Subsection Finding Eigenvalues and Eigenvectors

Since eigenvalues and eigenvectors are so important, we want to know how to find them. To do this, we are looking for a number \(\lambda\) and a non-zero vector \(\vec{v}\) so that
\begin{equation*} A\vec{v} = \lambda\vec{v}. \end{equation*}
We can rewrite this as
\begin{equation*} A\vec{v} - \lambda \vec{v} = 0 \end{equation*}
or, using the identity matrix,
\begin{equation*} (A - \lambda I)\vec{v} = 0. \end{equation*}
This means that we are looking for a non-zero solution to a homogeneous vector equation of the form \(B\vec{v} = 0\text{.}\) This is where all of our linear algebra theory comes into play.
TheoremΒ 3.4.7 tells us that, combining parts (b) and (d), that there is a non-zero solution to \((A - \lambda I)\vec{v} = 0\) if and only if the determinant of the matrix \(A - \lambda I\) is zero. Therefore, we can compute this determinant, find the values of \(\lambda\) so that \(\det(A - \lambda I) = 0\text{,}\) and these will give us our eigenvalues. Let’s see an example of what this looks like.

Example 3.5.2.

Compute \(\det(A - \lambda I)\) for the matrix
\begin{equation*} A = \begin{bmatrix} 7 & -8 \\ 3 & -3 \end{bmatrix}. \end{equation*}
Solution.
For this matrix, we have that
\begin{equation*} A - \lambda I = \begin{bmatrix} 7 & -8 \\ 3 & -3 \end{bmatrix} - \lambda \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} = \begin{bmatrix} 7-\lambda & -8 \\ 3 & -3-\lambda \end{bmatrix}. \end{equation*}
Thus
\begin{align*} \det(A - \lambda I) \amp= \det\left( \begin{bmatrix} 7-\lambda & -8 \\ 3 & -3-\lambda \end{bmatrix} \right) \\ \amp= (7-\lambda)(-3-\lambda) - (-8)(3) = \lambda^2 + 3\lambda - 7\lambda - 21 +24 \\ \amp= \lambda^2 - 4\lambda + 3 \end{align*}
If we were looking for eigenvalues here, we could then set this equal to zero, getting that
\begin{equation*} 0 = \lambda^2 - 4\lambda+ 3 = (\lambda -1)(\lambda -3) \end{equation*}
so that the eigenvalues are \(1\) and \(3\text{.}\)
In this case, we saw that computing \(\det(A - \lambda I)\) for this case, we ended up with a quadratic polynomial, so it was easy to find the eigenvalues. Thankfully, no matter the size of the matrix, we will always get a polynomial here.

Definition 3.5.3. Characteristic Polynomial.

For a matrix \(A\text{,}\) the expression \(\det(A - \lambda I)\) is called the characteristic polynomial of the matrix. It will always be a polynomial, and for \(A\) an \(n \times n\) matrix, it will be a degree \(n\) polynomial.
This explains why we got a quadratic polynomial for the \(2 \times 2\) matrix \(A\text{.}\) Therefore, for a matrix \(A\text{,}\) the roots of the characteristic polynomial are the eigenvalues of \(A\text{.}\)
Once we have the eigenvalues, we can use them to find the eigenvectors. As with how we started this discussion, we are looking for a non-zero vector \(\vec{v}\) so that
\begin{equation*} (A - \lambda I)\vec{v} = 0, \end{equation*}
and we know the value of \(\lambda\text{.}\) Therefore, we can set up a system of equations that correponds to
\begin{equation*} (A - \lambda I)\vec{v} = 0 \end{equation*}
and solve it for the components of the eigenvector.

Example 3.5.4. .

Find the eigenvalues and eigenvectors of the matrix
\begin{equation*} A = \begin{bmatrix} 7 & -8 \\ 3 & -3 \end{bmatrix}. \end{equation*}
Solution.
The previous example shows that the eigenvalues for this matrix are \(1\) and \(3\text{.}\) For the eigenvalue \(1\text{,}\) we want to find a non-zero solution to \((A - I)\vec{v} = 0\text{,}\) which means we want to solve for
\begin{equation*} (A - I)\vec{v} = \begin{bmatrix} 7-1 & -8 \\ 3 & -3-1 \end{bmatrix}\vec{v} = \begin{bmatrix} 6 & -8 \\ 3 & -4 \end{bmatrix}\vec{v}= 0. \end{equation*}
Writing the vector \(\vec{v}\) as \(\begin{bmatrix} v_1 \\ v_2 \end{bmatrix}\text{,}\) this system of equations becomes
\begin{align*} 6v_1 - 8v_2 \amp= 0 \\ 3v_1 - 4v_2 \amp= 0 \end{align*}
Since the second equation is two times the first one, these equations are redundant, so we only need to satisfy \(3v_1 - 4v_2 = 0\text{.}\) We can do this by choosing \(v_1 = 4\) and \(v_2 = 3\text{,}\) which gives that for \(\lambda = 1\text{,}\) a corresponding eigenvector is \(\begin{bmatrix} 4 \\ 3 \end{bmatrix}\text{.}\)
We can follow the same process for the eigenvalue \(3\text{.}\) For this, we want to find a non-zero solution to \((A - 3I)\vec{v} = 0\text{,}\) which means that we want to solve
\begin{equation*} (A - 3I)\vec{v} = \begin{bmatrix} 7-3 & -8 \\ 3 & -3-3 \end{bmatrix}\vec{v} = \begin{bmatrix} 4 & -8 \\ 3 & -6 \end{bmatrix}\vec{v}= 0. \end{equation*}
Writing the vector \(\vec{v}\) as \(\begin{bmatrix} v_1 \\ v_2 \end{bmatrix}\text{,}\) we get the two equations
\begin{align*} 4v_1 - 8v_2 \amp= 0 \\ 3v_1 - 6v_2 \amp= 0\text{.} \end{align*}
As before, these two equations are the same, since they are both a multiple of \(v_1 - 2v_2 = 0\text{.}\) Therefore, we just need to find a solution to that previous equation, which can be done with \(v_1 = 2\) and \(v_2 = 1\text{.}\) Therefore, an eigenvector for eigenvalue \(3\) is \(\begin{bmatrix} 2 \\ 1 \end{bmatrix}\text{.}\)
This example illustrates the standard process that is always used to find eigenvalues and eigenvectors of matrices: find the characteristic polynomial, get the roots of this polynomial, and use each of these eigenvalues to set up a system of equations for the components of each eigenvector. In addition, the equations that we get from this system will always be redundant if we have found the eigenvalue correctly. Since \(\det(A - \lambda I) = 0\text{,}\) we know that the rows of the matrix \(A - \lambda I\) are not linearly independent, and so the row-echelon form of \(A - \lambda I\) must have a zero row in it. This process works for any size matrix, but it becomes harder to find the roots of this polynomial when it is higher degree.

Example 3.5.5. .

Find the eigenvalues and eigenvectors of the matrix
\begin{equation*} A = \begin{bmatrix} 1 & 6 & 0 \\ 9 & -4 & 10 \\ 2 & -6 & 3 \end{bmatrix}. \end{equation*}
Solution.
We start by hunting for eigenvalues by taking the determinant of \(A - \lambda I\text{,}\) which will require the cofactor expansion in order to solve.
\begin{align*} \det(A - \lambda I) \amp= \det \left( \begin{bmatrix} 1-\lambda & 6 & 0 \\ 9 & -4-\lambda & 10 \\ 2 & -6 & 3-\lambda \end{bmatrix} \right) \\ \amp=(1-\lambda) \det\left( \begin{bmatrix} -4-\lambda & 10 \\ -6 & 3-\lambda \end{bmatrix} \right) - 6 \det \left( \begin{bmatrix} 9 & 10 \\ 2 & 3-\lambda \end{bmatrix} \right) \\ \amp= (1-\lambda)( (-4-\lambda)(3-\lambda) + 60) - 6 ( 9(3-\lambda) - 20) \\ \amp= (1-\lambda)(\lambda^2 + 4\lambda- 3\lambda - 12 + 60) - 6(27 - 9\lambda - 20) \\ \amp= (1-\lambda)(\lambda^2 + \lambda + 48) - 42 + 54\lambda \\ \amp= \lambda^2 + \lambda + 48 - \lambda^3 - \lambda^2 - 48 \lambda - 42 + 54\lambda \\ \amp= -\lambda^3 + 7\lambda + 6 \end{align*}
We need to look for the roots of this polynomial. There’s no nice way to factor this right away, so we need to start guessing roots. We know that the root must be a factor of 6. If we try \(\lambda = 1\text{,}\) we get
\begin{equation*} -1 + 7 + 6 = 12 \neq 0 \end{equation*}
so that one doesn’t work. Plugging in \(\lambda = -1\text{,}\) we get
\begin{equation*} -(-1)^3 - 7 + 6 = 1 - 7 +6 = 0 \end{equation*}
so this is a root, meaing that \(\lambda+1\) is a factor of the characteristic polynomial. We can then use polynomial long division to get that
\begin{equation*} -\lambda^3 + 7\lambda + 6 = (\lambda+ 1)(-\lambda^2 + \lambda + 6) = -(\lambda+1)(\lambda^2 - \lambda - 6) \end{equation*}
and the quadratic term here factors as \((\lambda - 3)(\lambda+2)\text{.}\) Thus, the characteristic polynomial of this matrix is
\begin{equation*} (\lambda+1)(\lambda-3)(\lambda+2) \end{equation*}
so the eigenvalues are \(-1\text{,}\) \(3\text{,}\) and \(-2\text{.}\)
For the eigenvalue \(-1\text{,}\) the eigenvector must satisfy
\begin{equation*} (A + I)\vec{v} = \vec{0} \end{equation*}
which we can write as
\begin{equation*} \begin{bmatrix} 2 & 6 & 0 \\ 9 & -3 & 10 \\ 2 & -6 & 4 \end{bmatrix} \begin{bmatrix} v_1 \\ v_2 \\ v_3 \end{bmatrix} = \vec{0}. \end{equation*}
To solve this, we row-reduce the coefficient matrix.
\begin{align*} \begin{bmatrix} 2 & 6 & 0 \\ 9 & -3 & 10 \\ 2 & -6 & 4 \end{bmatrix} \amp\rightarrow \begin{bmatrix} 1 & 3 & 0 \\ 9 & -3 & 10 \\ 2 & -6 & 4 \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 1 & 3 & 0 \\ 0 & -30 & 10 \\ 0 & -12 & 4 \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 1 & 3 & 0 \\ 0 & -3 & 1 \\ 0 & -12 & 4 \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 1 & 3 & 0 \\ 0 & -3 & 1 \\ 0 & 0 & 0 \end{bmatrix} \end{align*}
Therefore, the eigenvector must satsify \(v_1 + 3v_2 = 0\) and \(-3v_2 + v_3 = 0\text{.}\) We need to pick any non-zero set of numbers that solves these equations. For example, we could pick \(v_2 = 1\) to get that we need \(v_1 = -3\) and \(v_3 = 3\text{.}\) This gives an eigenvector of
\begin{equation*} \begin{bmatrix} -3 \\ 1 \\ 3 \end{bmatrix}. \end{equation*}
For the eigenvalue \(3\text{,}\) the eigenvector must satisfy
\begin{equation*} \begin{bmatrix} -2 & 6 & 0 \\ 9 & -7 & 10 \\ 2 & -6 & 0 \end{bmatrix} \begin{bmatrix} v_1 \\ v_2 \\ v_3 \end{bmatrix} = \vec{0}. \end{equation*}
Row reduction gives
\begin{align*} \begin{bmatrix} -2 & 6 & 0 \\ 9 & -7 & 10 \\ 2 & -6 & 0 \end{bmatrix} \amp\rightarrow \begin{bmatrix} 1 & -3 & 0 \\ 9 & -7 & 10 \\ 2 & -6 & 0 \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 1 & -3 & 0 \\ 0 & 20 & 10 \\ 0 & 0 & 0 \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 1 & -3 & 0 \\ 0 & 2 & 1 \\ 0 & 0 & 0 \end{bmatrix} \end{align*}
which means that the eigenvector must satisfy \(v_1 - 3v_2 = 0\) and \(2v_2 + v_3 = 0\text{.}\) Again, choosing \(v_2 = 1\) gives that we want \(v_1 = 3\) and \(v_3 = -2\text{.}\) Therefore, a corresponding eigenvector here is
\begin{equation*} \begin{bmatrix} 3 \\ 1 \\ -2 \end{bmatrix}. \end{equation*}
For the eigenvalue \(-2\text{,}\) the eigenvector must satisfy
\begin{equation*} \begin{bmatrix} 3 & 6 & 0 \\ 9 & -2 & 10 \\ 2 & -6 & 5 \end{bmatrix} \begin{bmatrix} v_1 \\ v_2 \\ v_3 \end{bmatrix} = \vec{0} \end{equation*}
where we can row reduce the coefficient matrix.
\begin{align*} \begin{bmatrix} 3 & 6 & 0 \\ 9 & -2 & 10 \\ 2 & -6 & 5 \end{bmatrix} \amp\rightarrow \begin{bmatrix} 1 & 2 & 0 \\ 9 & -2 & 10 \\ 2 & -6 & 5 \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 1 & 2 & 0 \\ 0 & -20 & 10 \\ 0 & -10 & 5 \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 1 & 2 & 0 \\ 0 & -2 & 1 \\ 0 & -10 & 5 \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 1 & 2 & 0 \\ 0 & -2 & 1 \\ 0 & 0 & 0 \end{bmatrix}\text{.} \end{align*}
Therefore, the eigenvector must satisfy \(v_1 + 2v_2 = 0\) and \(-2v_2 + v_3 = 0\text{.}\) Picking \(v_2 = 1\) again gives that we want \(v_1 = -2\) and \(v_3 = 2\text{.}\) Therefore, an eigenvector with eigenvalue \(-2\) is
\begin{equation*} \begin{bmatrix} -2 \\ 1 \\ 2 \end{bmatrix}. \end{equation*}

Subsection Real Eigenvalues

Since eigenvalues come from finding the roots of a polynomial, there are a few different situations that can arise in terms of these eigenvalues. If we take a quadratic polynomial, there are three options for the two roots.
The same is true for eigenvalues, they are either all real and distinct, there are some that appear in complex conjugate pairs, or there are some repeated eigenvalues. The easiest of these cases is when the characteristic polynomial has all real and distinct eigenvalues.
In this case, we get a very nice result. We know that for each eigenvalue, there will always be at least one eigenvector, otherwise it wouldn’t be an eigenvalue. If the matrix \(A\) is an \(n \times n\) matrix, then the characteristic polynomial is a degree \(n\) polynomial, which will have \(n\) distinct roots by our assumption. Each of these will have a corresponding eigenvector, giving us \(n\) eigenvectors as well. A more involved result tells us that eigenvectors for different eigenvalues are always linearly independent. Therefore, we get \(n\) vectors in \(\mathbb{R}^n\text{,}\) that are linearly independent, and so they are a basis. This gives the following result.
To reference, look at the previous example. We found three distinct real eigenvalues of \(-1\text{,}\) \(3\text{,}\) and \(-2\text{.}\) For these eigenvalues, we had eigenvectors
\begin{equation*} -1 \rightarrow \begin{bmatrix} -3 \\ 1 \\ 3 \end{bmatrix} \quad 3 \rightarrow \begin{bmatrix} 3 \\ 1 \\ -2 \end{bmatrix} \quad -2 \rightarrow \begin{bmatrix} -2 \\ 1 \\ 2 \end{bmatrix}. \end{equation*}
These three vectors are linearly independent (check this!) and since they are three component vectors, the space has dimension 3, and so 3 linearly independent vectors must make up a basis. This is useful to know for now, but will be critical when we want to use this information to solve systems of differential equations later.

Subsection Complex Eigenvalues

When the matrix has complex eigenvalues, the process is very similar to before. However, the eigenvector will necessarily also be complex, that is, some of the components of this vector will be complex numbers. Let’s illustrate this with an example.

Example 3.5.7. .

Find the eigenvalues and eigenvectors of the matrix
\begin{equation*} A = \begin{bmatrix} 3 & -8 \\ 5 & -9 \end{bmatrix}. \end{equation*}
Solution.
We first look for the eigenvalues using the characteristic polynomial of \(A\text{.}\)
\begin{align*} \det(A - \lambda I) \amp= \det \left( \begin{bmatrix} 3-\lambda & -8 \\ 5 & -9 -\lambda \end{bmatrix} \right) \\ \amp= (3-\lambda)(-9-\lambda) + 40 \\ \amp= \lambda^2 + 9\lambda - 3\lambda - 27+40 \\ \amp= \lambda^2 + 6\lambda + 13\text{.} \end{align*}
This quadratic does not factor, so we use the quadratic formula to find that
\begin{equation*} \lambda = \frac{-6 \pm \sqrt{6^2 - 4\cdot 13}}{2} = \frac{-6 \pm \sqrt{-16}}{2} = -3\pm 2i \end{equation*}
so that we have complex eigenvalues.
We now look for the eigenvectors in the same way as in the real case. If we take the eigenvalue \(-3+2i\text{,}\) then such an eigenvector must satisfy
\begin{equation*} (A - (-3+2i)I)\vec{v} = \vec{0}. \end{equation*}
This means that
\begin{equation*} \begin{bmatrix} 3-(-3+2i) & -8 \\ 5 & -9-(-3+2i) \end{bmatrix}\vec{v} = \begin{bmatrix} 6-2i & -8 \\ 5 & -6-2i \end{bmatrix}\vec{v} = \vec{0}. \end{equation*}
These two equations should be redundant, and to verify that, we will multiply the top row by \(6+2i\) in row reduction to get
\begin{align*} \begin{bmatrix} 6-2i & -8 \\ 5 & -6-2i \end{bmatrix} \amp\rightarrow \begin{bmatrix} (6-2i)(6+2i) & -8(6+2i) \\ 5 & -6-2i \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 40 & -48 - 16i \\ 5 & -6-2i \end{bmatrix} \end{align*}
and from this, we can see that the top row is 8 times the bottom one, so they are redundant. Thus, an eigenvector must satisfy
\begin{equation*} 5v_1- (6+2i)v_2 = 0 \end{equation*}
and we can pick any non-zero numbers that satisfy this. One simple way to do this is by switching the coefficients, so that \(v_1 = 6+2i\) and \(v_2 = 5\text{.}\) Therefore, an eigenvector that we get is
\begin{equation*} \begin{bmatrix} 6+2i \\ 5 \end{bmatrix}. \end{equation*}
Now, we can take the other eigenvalue, \(-3-2i\text{.}\) The process is the same, so that the vector must satisfy
\begin{equation*} \begin{bmatrix} 3-(-3-2i) & -8 \\ 5 & -9-(-3-2i) \end{bmatrix}\vec{v} = \begin{bmatrix} 6+2i & -8 \\ 5 & -6+2i \end{bmatrix}\vec{v} = \vec{0}. \end{equation*}
To check redundancy again, we multiply the top row by \(6-2i\) to get
\begin{align*} \begin{bmatrix} 6+2i & -8 \\ 5 & -6+2i \end{bmatrix} \amp\rightarrow \begin{bmatrix} (6+2i)(6-2i) & -8(6-2i) \\ 5 & -6+2i \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 40 & -48 + 16i \\ 5 & -6+2i \end{bmatrix} \end{align*}
and again, the first equation is 8 times the second one. Thus, the eigenvector will need to satisfy
\begin{equation*} 5v_1 - (6 - 2i)v_2 = 0 \end{equation*}
which can be done by picking \(v_1 = 6-2i\) and \(v_2 = 5\text{,}\) giving an eigenvector of
\begin{equation*} \begin{bmatrix} 6-2i \\ 5 \end{bmatrix}. \end{equation*}
The process here is the same as it was in the real case, except that now all of the equations are complex equations. In particular, the β€œredundancy” that we expect to see between the equations will likely be via a complex multiple. The easiest way to verify that these equations are redundant is by multiplying the first entry in each row by its complex conjugate. This is because, if we have the complex number \(a + bi\text{,}\) multiplying this by \(a-bi\) gives
\begin{equation*} (a+bi)(a-bi) = a^2 + abi - abi - b^2i^2 = a^2 + b^2 \end{equation*}
which is now a real number. This will make it easier to compare the two equations to make sure that they are redundant, and that the eigenvalue was found correctly.

Example 3.5.8.

Find the eigenvalues and eigenvectors of the matrix
\begin{equation*} A = \begin{bmatrix} 1 & 9 & 6 \\ 0 & 1 & 6 \\ 0 & -3 & -5 \end{bmatrix}. \end{equation*}
Solution.
We first look for eigenvalues, like always. We get these by computing
\begin{equation*} \det(A - \lambda I) = \det \left( \begin{bmatrix} 1-\lambda & 9 & 6 \\ 0 & 1-\lambda & 6 \\ 0 & -3 & -5-\lambda \end{bmatrix}\right). \end{equation*}
We will compute this by cofactor expansion along the second row.
\begin{align*} \det \left( \begin{bmatrix} 1-\lambda & 9 & 6 \\ 0 & 1-\lambda & 6 \\ 0 & -3 & -5-\lambda \end{bmatrix} \right) \amp= (-1)^{2+2}(1-\lambda)\det\left( \begin{bmatrix} 1-\lambda & 6 \\ 0 & -5-\lambda \end{bmatrix} \right) \\ \amp\qquad + (-1)^{2+3} 6 \det\left( \begin{bmatrix} 1-\lambda & 9 \\ 0 & -3 \end{bmatrix} \right) \\ \amp= (1-\lambda)(1-\lambda)(-5-\lambda) - 6(1-\lambda)(-3) \\ \amp= (1-\lambda)((1-\lambda)(-5-\lambda) + 18) \\ \amp= (1-\lambda)(\lambda^2 + 4\lambda + 13) \end{align*}
so that one eigenvalue is at \(\lambda = 1\text{.}\) For the other two, we use the quadratic formula to obtain
\begin{equation*} \lambda = \frac{-4 \pm \sqrt{16 - 4\cdot 13}}{2} = \frac{-4 \pm \sqrt{-36}}{2} = -2 \pm 3i. \end{equation*}
Thus, we have one real eigenvalue and two complex eigenvalues.
For \(\lambda = 1\text{,}\) we know that the eigenvector must satisfy
\begin{equation*} \begin{bmatrix} 0 & 9 & 6 \\ 0 & 0 & 6 \\ 0 & -3 & -6 \end{bmatrix} \vec{v} = \vec{0}. \end{equation*}
Row reduction will reduce this matrix to
\begin{equation*} \begin{bmatrix} 0 & 1 & 0 \\ 0 & 0 & 1 \\ 0 & 0 & 0 \end{bmatrix} \end{equation*}
(Check this!) so that the eigenvector in this case is
\begin{equation*} \begin{bmatrix} 1 \\ 0 \\ 0 \end{bmatrix}. \end{equation*}
For the eigenvalue \(-2 + 3i\text{,}\) we get that the eigenvector must satisfy
\begin{equation*} \begin{bmatrix} 3 - 3i & 9 & 6 \\ 0 & 3-3i & 6 \\ 0 & -3 & -3-3i \end{bmatrix} \vec{v} = \vec{0}. \end{equation*}
We now want to row reduce the coefficient matrix. To do so, we start by dividing the first row by 3 then multiplying by \(1+i\text{.}\)
\begin{align*} \begin{bmatrix} 3 - 3i & 9 & 6 \\ 0 & 3-3i & 6 \\ 0 & -3 & -3-3i \end{bmatrix} \amp\rightarrow \begin{bmatrix} 1 - i & 3 & 2 \\ 0 & 3-3i & 6 \\ 0 & -3 & -3-3i \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} (1 - i)(1+i) & 3(1+i) & 2(1+i) \\ 0 & 3-3i & 6 \\ 0 & -3 & -3-3i \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 2 & 3+3i & 2+2i \\ 0 & 3-3i & 6 \\ 0 & -3 & -3-3i \end{bmatrix}\text{.} \end{align*}
We could divide the first row by 2 to get to a 1 in the top-right entry, but we’ll wait on that in order to avoid fractions. To row reduce the rest of the matrix, we will divide each of the remaining two rows by 3, and then multiply the second by \(1+i\text{,}\) just like we did to the first row.
\begin{align*} \begin{bmatrix} 2 & 3+3i & 2+2i \\ 0 & 3-3i & 6 \\ 0 & -3 & -3-3i \end{bmatrix} \amp\rightarrow \begin{bmatrix} 2 & 3+3i & 2+2i \\ 0 & 1-i & 2 \\ 0 & -1 & -1-i \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 2 & 3+3i & 2+2i \\ 0 & 2 & 2+2i \\ 0 & -1 & -1-i \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 2 & 3+3i & 2+2i \\ 0 & 1 & 1+i \\ 0 & -1 & -1-i \end{bmatrix} \end{align*}
which illlustrates that the last two rows are redundant. Thus, the reduced form of the matrix that we have (which is not quite a row echelon form, but it is enough to back-solve for the eigenvector) is
\begin{equation*} \begin{bmatrix} 2 & 3+3i & 2+2i \\ 0 & 1 & 1+i \\ 0 & 0 & 0 \end{bmatrix}. \end{equation*}
This means that the eigenvector \(\vec{v}\) must satisfy
\begin{equation*} 2v_1 + (3+3i)v_2 + (2+2i)v_3 = 0 \qquad v_2 + (1+i)v_3 = 0. \end{equation*}
We can satisfy the second of these equations by choosing \(v_2 = 1+i\) and \(v_3 = -1\text{.}\) Plugging these values into the first equation gives that
\begin{align*} 0 \amp= 2v_1 + (3+3i)v_2 + (2+2i)v_3 \\ \amp= 2v_1 + (3+3i)(1+i) + (2+2i)(-1) \\ \amp= 2v_1 + 3 + 3i + 3i - 3 - 2 - 2i \\ \amp= 2v_1 - 2 + 4i \end{align*}
Therefore, we need to take \(v_1 = 1 - 2i\text{,}\) giving that the eigenvector is
\begin{equation*} \begin{bmatrix} 1 - 2i \\ 1+i \\ -1 \end{bmatrix}. \end{equation*}
A very similar computation following the same set of steps (or just using the remark below) for the eigenvalue \(-2-3i\) gives that this corresponding eigenvector is
\begin{equation*} \begin{bmatrix} 1 + 2i \\ 1-i \\ -1 \end{bmatrix}. \end{equation*}
One fact that comes out of those examples is that the eigenvectors for conjugate eigenvalues are also complex conjugates. This comes from the fact that \(A\) is a real matrix, which means that if
\begin{equation*} A\vec{v} = \lambda \vec{v} \end{equation*}
and we take the complex conjugate of both sides, we get that
\begin{equation*} A\bar{\vec{v}} = \bar{A\vec{v}} = \bar{\lambda\vec{v}} = \bar{\lambda}\bar{\vec{v}} \end{equation*}
so that \(\bar{\vec{v}}\) is an eigenvector for \(\bar{\lambda}\text{.}\) This means that, when solving these types of problems, we only need to find one of the complex eigenvectors and can get the other by taking the complex conjugate.

Subsection Repeated Eigenvalues

Distinct and complex eigenvalues all work out nicely and in pretty much the same manner. For repeated eigenvalues, the issues get more significant.

Example 3.5.9. .

Find the eigenvalues and eigenvectors of the matrices
\begin{equation*} A = \begin{bmatrix} 3 & 0 \\ 0 & 3 \end{bmatrix} \qquad B = \begin{bmatrix} 4 & -1 \\ 1 & 2 \end{bmatrix}. \end{equation*}
Solution.
For the matrix \(A\text{,}\) we can compute the characteristic polynomial
\begin{equation*} \det(A - \lambda I) = \det \left( \begin{bmatrix} 3-\lambda &0 \\ 0 & 3 - \lambda \end{bmatrix}\right) = (3 - \lambda)(3 - \lambda) \end{equation*}
Therefore, we have a double root at \(3\) for this matrix. Therefore, the only eigenvalue we get is \(3\text{.}\) When we look to find the eigenvectors, we get
\begin{equation*} A - 3 I = \begin{bmatrix} 0 & 0 \\ 0 & 0 \end{bmatrix} \end{equation*}
so that this matrix multiplied by any vector is zero. Therefore, we can use both \(\begin{bmatrix} 1 \\ 0 \end{bmatrix}\) and \(\begin{bmatrix} 0 \\ 1 \end{bmatrix}\) as eigenvectors.
On the other hand, the matrix \(B\) has a characteristic polynomial
\begin{align*} \det(B - \lambda I) \amp= \det\left( \begin{bmatrix} 4 - \lambda & -1 \\ 1 & 2 - \lambda \end{bmatrix} \right) \\ \amp= (4-\lambda)(2-\lambda) - (-1)(1) = \lambda^2 - 6\lambda + 8 + 1 \\ \amp= \lambda^2 - 6\lambda + 9 = (\lambda - 3)^2 \end{align*}
so again, we have a double root at \(3\text{.}\) However, when we go to find the eigenvectors, we get that
\begin{equation*} B - 3 I = \begin{bmatrix} 1 & -1 \\ 1 & -1 \end{bmatrix} \end{equation*}
which gives that an eigenvector must satisfy \(v_1 - v_2 = 0\) so \(\begin{bmatrix} 1 \\ 1 \end{bmatrix}\) works.
There is a big difference between these two examples. Both had the same characteristic polynomial of \((\lambda - 3)^2\text{,}\) but for \(A\text{,}\) we could find two linearly independent eigenvectors, but for \(B\text{,}\) we could only find 1. This seems like it might be a problem, since we would like to get to two eigenvectors like we did for both of the previous two cases. This leads us to define the following for \(A\) and \(n \times n\) matrix and \(r\) an eigenvalue of \(A\text{.}\)

Definition 3.5.10.

  • The algebraic multiplicity of \(r\) is the power of \((\lambda - r)\) in the characteristic polynomial if \(A\text{.}\)
  • The geometric multiplicity of \(r\) is the number of linearly independent eigenvectors of \(A\) with eigenvalue \(r\text{.}\)
  • The defect of \(r\) is the difference between the algebraic multiplicity and the geometric multiplicity of \(r\text{.}\)
  • We say that an eigenvalue is defective if the defect is at least 1.
For the previous example, the algebraic multiplicity of \(3\) for both \(A\) and \(B\) was 2, but the geometric multiplictiy of \(3\) for \(A\) is 2, and for \(B\) is it only \(1\text{.}\) Therefore \(A\) has a defect of \(0\) and \(B\) has a defect of \(1\text{,}\) so \(3\) is a defective eigenvalue for matrix \(B\text{.}\)
In terms of these multiplicities, there are two facts that are known to be true.
  1. If \(r\) is an eigenvalue, then both the algebraic and geometric multiplicity are at least 1.
  2. The algebraic multiplicity of any eigenvalue is always greater than or equal to the geometric multiplicity.
This tells us that in the case of real and distinct eigenvalues, every eigenvalue has multiplicity 1. Since the geometric multiplicity is also \(1\text{,}\) this means that none of these eigenvalues are defective. This was great, because it let us get to \(n\) eigenvectors for an \(n \times n\) matrix, and these generated a basis of \(\mathbb{R}^n\text{.}\)
Why is a defective eigenvalue a problem? When we go solve differential equations using the method in ChapterΒ 4, having a β€˜full set’ of eigenvectors, or \(n\) eigenvectors for an \(n \times n\) matrix, will be very important. When we have a defective eigenvalue, we can’t get there. Since the degree of the characteristic polynomial is \(n\text{,}\) the only way we get to \(n\) eigenvectors is if every eigenvalue has a number of linearly independent eigenvectors equal to the algebraic multiplicity, which means they are not defective.
So how can we fix this? Well, there’s not really much we can do in the way of finding more eigenvectors, because they don’t exist. The replacement that we have is, in linear algebra contexts, called a generalized eigenvector. We will see this idea come back up in SectionΒ 4.6 in a more natural way. The rest of this section contains a more detailed definition of generalized eigenvectors. You are welcome to skip this part on a first reading and come back after you are more comfortable with eigenvalues and eigenvectors, or when the material comes back around again in SectionΒ 4.6.
If \(r\) is an defective eigenvalue of the matrix \(A\) with eigenvector \(\vec{v}\text{,}\) a generalized eigenvector of \(A\) is a vector \(\vec{w}\) so that \((A - rI)\vec{w} = \vec{v}\text{.}\) This is the same as the normal eigenvector equation with \(\vec{v}\) on the right-hand side instead of \(\vec{0}\text{.}\) Since \((A - rI)\vec{v} = \vec{0}\text{,}\) this also means that
\begin{equation*} (A - rI)^2\vec{w} = 0. \end{equation*}
More generally, a generalized eigenvector is a vector \(\vec{w}\) where there is a power \(k \geq 1\) so that
\begin{equation*} (A - rI)^k\vec{w} = 0 \qquad \text{ but } \qquad (A - rI)^{k-1}\vec{w} \neq 0. \end{equation*}
It might seems strange where this comes from, but we will see why this formula makes more sense once we try to solve differential equations using matrices in SectionΒ 4.6.

Example 3.5.11.

Find a generalized eigenvector of eigenvalue \(3\) for the matrix
\begin{equation*} B = \begin{bmatrix} 4 & -1 \\ 1 & 2 \end{bmatrix}. \end{equation*}
Solution.
Previously, we found that \(\vec{v} = \begin{bmatrix}1 \\ 1 \end{bmatrix}\) is an eigenvector for \(B\) with eigenvalue \(3\text{.}\) To find a generalized eigenvector, we need a vector \(\vec{w}\) so that
\begin{equation*} (B - 3I)\vec{w} = \begin{bmatrix}1 \\ 1 \end{bmatrix}. \end{equation*}
Plugging in the matrix for \(B - 3I\) gives that we need
\begin{equation*} \begin{bmatrix} 1 & -1 \\ 1 & -1 \end{bmatrix} \begin{bmatrix} w_1 \\ w_2 \end{bmatrix} = \begin{bmatrix} 1 \\ 1 \end{bmatrix}. \end{equation*}
Both of the rows of this matrix becomes the equation
\begin{equation*} w_1 - w_2 = 1. \end{equation*}
There are many values of \(w_1\) and \(w_2\) that make this work. We can pick \(w_1 = 1\) and \(w_2 = 0\text{.}\) This will give a generalized eigenvector of \(\begin{bmatrix} 1 \\ 0 \end{bmatrix}\text{.}\) We could also pick \(w_1 = 3\) and \(w_2 = 2\text{,}\) to get a generalized eigenvector as \(\begin{bmatrix} 3 \\ 2 \end{bmatrix}\text{.}\) Any of these choices work as a generalized eigenvector.

Example 3.5.12.

Find the eigenvalues and eigenvectors (and generalized eigenvectors if needed) of the matrix
\begin{equation*} A = \begin{bmatrix} -2 & 0 & 1 \\ 19 & 2 & -16 \\ -1 & 0 & 0 \end{bmatrix}. \end{equation*}
Solution.
We start by looking for the eigenvalues through the characteristic polynomial.
\begin{equation*} \det(A - \lambda I) = \det\left( \begin{bmatrix} -2-\lambda & 0 & 1 \\ 19 & 2-\lambda & -16 \\ -1 & 0 & 0-\lambda \end{bmatrix}\right) \end{equation*}
To compute this determinant, we will expand along column 2, because it only has one non-zero entry. This gives
\begin{align*} \det(A - \lambda I) \amp= (-1)^{2+2} (2-\lambda)\det\left( \begin{bmatrix} -2-\lambda & 1 \\ -1 & -\lambda \end{bmatrix} \right) \\ \amp= (2-\lambda)((-2-\lambda)(-\lambda) + 1) \\ \amp= (2-\lambda)(\lambda^2 + 2\lambda + 1) = (2-\lambda)(\lambda+1)^2 \end{align*}
so we have an eigenvalue at \(2\) and a double eigenvalue at \(-1\text{.}\)
First, let’s look for the eigenvector for eigenvalue \(2\text{.}\) In this case, we know that the eigenvector must satisfy
\begin{equation*} \begin{bmatrix} -4 & 0 & 1 \\ 19 & 0 & -16 \\ -1 & 0 & -2 \end{bmatrix} \vec{v} = \vec{0}. \end{equation*}
Row reducing the coefficient matrix will give
\begin{equation*} \begin{bmatrix} 1 & 0 & 0 \\ 0 & 0 & 1 \\ 0 & 0 & 0 \end{bmatrix} \end{equation*}
so that a corresponding eigenvector is
\begin{equation*} \begin{bmatrix} 0 \\ 1 \\ 0 \end{bmatrix} \end{equation*}
since we know that \(v_1 = 0\) and \(v_3 = 0\text{.}\)
For \(\lambda = -1\text{,}\) we see that an eigenvector must satisfy
\begin{equation*} \begin{bmatrix} -1 & 0 & 1 \\ 19 & 3 & -16 \\ -1 & 0 & 1 \end{bmatrix} \vec{v} = \vec{0}. \end{equation*}
We now look to row reduce this coefficient matrix.
\begin{align*} \begin{bmatrix} -1 & 0 & 1 \\ 19 & 3 & -16 \\ -1 & 0 & 1 \end{bmatrix} \amp\rightarrow \begin{bmatrix} 1 & 0 & -1 \\ 19 & 3 & -16 \\ -1 & 0 & 1 \end{bmatrix}\\ \amp\rightarrow \begin{bmatrix} 1 & 0 & -1 \\ 0 & 3 & 3 \\ 0 & 0 & 0 \end{bmatrix} \\ \amp\rightarrow \begin{bmatrix} 1 & 0 & -1 \\ 0 & 1 & 1 \\ 0 & 0 & 0 \end{bmatrix} \text{.} \end{align*}
Therefore, we know that
\begin{equation*} v_1 - v_3 = 0 \qquad v_2 + v_3 = 0. \end{equation*}
If we pick \(v_3 = 1\text{,}\) then we know that \(v_2 = -1\) and \(v_1 = 1\text{,}\) so the only eigenvector we get for \(\lambda = -1\) is
\begin{equation*} \begin{bmatrix} 1 \\ -1 \\ 1 \end{bmatrix}. \end{equation*}
Since we only found one eigenvector for \(\lambda = -1\) and \(\lambda + 1\) was squared in the characteristic polynomial, this is a defective eigenvalue. Thus, we can look for a generalized eigenvalue here, which means that we need to solve for a vector \(\vec{w}\) with
\begin{equation*} \begin{bmatrix} -1 & 0 & 1 \\ 19 & 3 & -16 \\ -1 & 0 & 1 \end{bmatrix} \vec{w} = \begin{bmatrix} 1 \\ -1 \\ 1 \end{bmatrix} \end{equation*}
We can then row reduce the augmented matrix to see what we can pick for \(\vec{w}\text{.}\)
\begin{align*} \begin{bmatrix} -1 & 0 & 1 & 1 \\ 19 & 3 & -16 & -1\\ -1 & 0 & 1 & 1 \end{bmatrix} \amp\rightarrow \begin{bmatrix} 1 & 0 & -1 & -1 \\ 19 & 3 & -16 & -1\\ -1 & 0 & 1 & 1 \end{bmatrix} \\ \amp\rightarrow \begin{bmatrix} 1 & 0 & -1 & -1 \\ 0 & 3 & 3 & 18\\ 0 & 0 & 0 & 0 \end{bmatrix} \\ \amp\rightarrow \begin{bmatrix} 1 & 0 & -1 & -1 \\ 0 & 1 & 1 & 6\\ 0 & 0 & 0 & 0 \end{bmatrix} \text{.} \end{align*}
Thus, the generalized eigenvector \(\vec{w}\) must satisfy
\begin{equation*} w_1 - w_3 = -1 \qquad w_2 + w_3 = 6. \end{equation*}
We can pick any non-zero numbers to do this, so we can take \(w_3 = 1\text{,}\) \(w_2 = 5\) and \(w_1 = 0\text{.}\) Thus, the generalized eigenvector here is
\begin{equation*} \begin{bmatrix} 0 \\ 5 \\ 1 \end{bmatrix}. \end{equation*}

Exercises Exercises

1.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} -8 & -18 \\ 4 & 10 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = -2\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} -3 \\ 1 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = 4\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 3 \\ -2 \end{smallmatrix}\right]\text{.}\)

2.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} -2 & 0 \\ 8 & -4 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = -2\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 1 \\ 4 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = -4\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 0 \\ 1 \end{smallmatrix}\right]\text{.}\)

3.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} -7 & 1 \\ -12 & 0 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = -4\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 1 \\ 3 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = -3\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 1 \\ 4 \end{smallmatrix}\right]\text{.}\)

4.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} -3 & 5 \\ -8 & 9 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = 3+2i\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 3-i \\ 4 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = 3-2i\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 3+i \\ 4 \end{smallmatrix}\right]\text{.}\)

5.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} 0 & 2 \\ -1 & -2 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = -1+i\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 2 \\ -1+i \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = -1-i\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 2 \\ -1-i \end{smallmatrix}\right]\)

6.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} -4 & 1 \\ -8 & 0 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = -2+2i\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 1-i \\ 4 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = -2-2i\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 1+i\\ 4 \end{smallmatrix}\right]\)

7.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} 0 & -8 \\ 2 & 8 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = 4\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} -2 \\ 1 \end{smallmatrix}\right]\)

8.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} 1 & -2 \\ 8 & -7 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = -3\text{,}\) \(vec{v}_1 = \left[\begin{smallmatrix} 1 \\ 2 \end{smallmatrix}\right]\)

9.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} 4 & 0 & 0 \\ -4 & 2 & 1 \\ -6 & 0 & 1 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = 2\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 0\\ 1\\ 0 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = 1\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 0\\ -1\\ 1 \end{smallmatrix}\right]\text{,}\) \(\lambda_3 = 4\text{,}\) \(\vec{v}_3 = \left[\begin{smallmatrix} 1\\ -3\\ -2 \end{smallmatrix}\right]\)

10.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} -4 & 9 & 9 \\ -3 & 6 & 9 \\ 3 & -7 & -10 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = -4\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 1\\ 3\\ -3 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = -3\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 0\\ -1\\ 1 \end{smallmatrix}\right]\text{,}\) \(\lambda_3 = -1\text{,}\) \(\vec{v}_3 = \left[\begin{smallmatrix} 3\\ 0\\ 1 \end{smallmatrix}\right]\)

11.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} -2 & 0 & 0 \\ 0 & 4 & 6 \\ 6 & -3 & -2 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = 1+3i\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 0\\ 2\\ -1+i \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = 1-3i\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 0\\ 2\\ -1-i \end{smallmatrix}\right]\text{,}\) \(\lambda_3 = -2\text{,}\) \(\vec{v}_3 = \left[\begin{smallmatrix} 1\\ 2\\ -2 \end{smallmatrix}\right]\)

12.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} 5 & -6 & -6 \\ 3 & -1 & 6 \\ 0 & 0 & 3 \\ \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = 3\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 6\\ 3\\ -1 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = 2+3i\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 2 \\ 1-i \\ 0 \end{smallmatrix}\right]\text{,}\) \(\lambda_3 = 2-3i\text{,}\) \(\vec{v}_3 = \left[\begin{smallmatrix} 2 \\ 1+i \\ 0 \end{smallmatrix}\right]\)

13.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} -4 & 0 & -14 \\ 5 & -1 & -6 \\ 3 & 0 & 9 \\ \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = -1\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 0 \\ 1 \\ 0 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = 2\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} -7 \\ -\frac{53}{3} \\ 3 \end{smallmatrix}\right]\text{,}\) \(\lambda_3 = 3\text{,}\) \(\vec{v}_3 = \left[\begin{smallmatrix} 2 \\ 4 \\ -1 \end{smallmatrix}\right]\)

14.

Find the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} \begin{bmatrix} 5 & 3 & 6 \\ 2 & 2 & 2 \\ -3 & -2 & -3 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = 2\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 1\\ 1\\ -1 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = 1\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 0\\ -2\\ 1 \end{smallmatrix}\right]\) (double root)

15.

Find the eigenvalues and eigenvectors for the matrix below. Compute generalized eigenvectors if needed to get to a total of two vectors.
\begin{equation*} \begin{bmatrix} -11 & -9 \\ 12 & 10 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = -2\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} -1 \\ 1 \end{smallmatrix}\right]\text{,}\) \(\lambda_2 = 1\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 3 \\ -4 \end{smallmatrix}\right]\text{.}\)

16.

Find the eigenvalues and eigenvectors for the matrix below. Compute generalized eigenvectors if needed to get to a total of two vectors.
\begin{equation*} \begin{bmatrix} 4 & -4 \\ 1 & 0 \end{bmatrix} \end{equation*}
Answer.
\(\lambda_1 = 2\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 2 \\ 1 \end{smallmatrix}\right]\text{,}\) Generalized eigenvector \(\vec{w} = \left[\begin{smallmatrix} 1 \\ 0 \end{smallmatrix}\right]\)

17.

This exercise will work through the process of finding the eigenvalues and corresponding eigenvectors of the matrix
\begin{equation*} A = \begin{bmatrix} -2 & 0 & -3 \\ 12 & 5 & 12 \\ 0 &-1 & 1 \end{bmatrix}. \end{equation*}
(a)
Find the characteristic polynomial of this matrix by computing \(\det(A - \lambda I)\) using any method from this section.
Answer.
\(-\lambda^3 + 4\lambda^2 - 5\lambda + 2\)
(b)
This polynomial can be rewritten as \(-(\lambda - r_1)^2(\lambda - r_2)\) where \(r_1\) and \(r_2\) are the eigenvalues of \(A\text{.}\) What are the eigenvalues? What is each of their algebraic multiplicity? (Hint: One of these roots is \(2\))
Answer.
\(r_1 = 1\) with algebraic multiplicity 2, and \(r_2 = 2\) with algebraic multiplicity 1.
(c)
Find an eigenvector for eigenvalue \(r_2\) above. What is the geometric multiplicity of this eigenvalue?
Answer.
\(\left[\begin{smallmatrix} 3 \\ 4 \\ -4 \end{smallmatrix}\right]\text{.}\) Geometric multiplicity is 1.
(d)
Find an eigenvector for eigenvalue \(r_1\text{.}\) What is the geometric multiplicity of this eigenvalue?
Answer.
\(\left[\begin{smallmatrix}1 \\ 0 \\ -1 \end{smallmatrix}\right]\text{.}\) Geometric multiplicity is 1.
(e)
There is only one possible eigenvector for \(r_1\text{,}\) which means it is defective. Find a solution to the equation \((A - r_1 I) \vec{w} = \vec{v}\text{,}\) where \(\vec{v}\) is the eigenvector you found in the previous part. This is the generalized eigenvector for \(r_1\text{.}\)
Answer.
\(\left[\begin{smallmatrix} -1/3 \\ 1 \\ 0\end{smallmatrix}\right]\text{.}\) There are many answers here, and they will satisfy \(v_2 = 1\) and \(v_1 + v_3 = -1/3\text{.}\)

18.

We say that a matrix \(A\) is diagonalizable if there exist matrices \(D\) and \(P\) so that \(PDP^{-1} = A\text{.}\) This really means that \(A\) can be represented by a diagonal matrix in a different basis (as opposed to the standard basis). One way this can be done is with eigenvalues. This exercise shows that, in the case of a \(2\times 2\) matrix, if we have two distinct real eigenvalues, that matrix is diagonalizable, using the eigenvectors.
(a)
Consider the matrix \(A\) given by
\begin{equation*} A = \begin{bmatrix} -4 & 6 \\ -1 & 1 \end{bmatrix}. \end{equation*}
Find the eigenvalues and corresponding eigenvectors of this matrix.
Answer.
\(\lambda =-1\text{,}\) \(\left[\begin{smallmatrix} 2 \\ 1 \end{smallmatrix}\right]\text{.}\) \(\lambda = -2\text{,}\) \(\left[\begin{smallmatrix} 3 \\ 1 \end{smallmatrix}\right]\)
(b)
Form two matrices, \(D\text{,}\) a diagonal matrix with the eigenvalues of \(A\) on the diagonal, and \(E\text{,}\) a matrix whose columns are the eigenvectors of \(A\) in the same order as the eigenvalues were put into \(D\text{.}\) Write out these matrices.
Answer.
\(D = \left[\begin{smallmatrix} -2 & 0 \\ 0 & -1 \end{smallmatrix}\right]\text{,}\) \(E = \left[\begin{smallmatrix} 3 & 2 \\ 1 & 1 \end{smallmatrix}\right]\)
(d)
Work out the products \(EDE^{-1}\) and \(E^{-1}AE\text{.}\) What do you notice here?
Answer.
\(EDE^{-1} = A\text{,}\) \(E^{-1}AE = D\)

19.

Follow the process outlined in Exercise ExerciseΒ 18 to attempt to diagonalize the matrix
\begin{equation*} \begin{bmatrix} 13 & 14 & 12 \\ -6 & -4 & -6 \\ -3 & -6 & -2 \end{bmatrix} \end{equation*}
Hint: 1 is an eigenvalue.
Answer.
\(D = \left[\begin{smallmatrix} 1 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 4 \end{smallmatrix}\right]\text{,}\) \(E = \left[\begin{smallmatrix} 1 & -2 & 2 \\ 0 & -1 & -3 \\-1 & 3 & 2 \end{smallmatrix}\right]\)

20.

The diagonalization process decribed in ExerciseΒ 18 works for any case where there are real and distinct eigenvalues, as well as complex eigenvalues (but the algebra with the complex numbers gets complicated). It may or may not work in the case of repeated eigenvalues, and it fails whenever there are defective eigenvalues. Consider the matrix
\begin{equation*} \begin{bmatrix} 4 & -1 \\ 1 & 2 \end{bmatrix}\text{.} \end{equation*}
The matrix we from this exercise get here is almost diagonal, but not quite. It turns out that this is the best we can do for matrices with defective eigenvalues. This matrix is often called \(J\) and is the Jordan Form of the matrix \(A\text{.}\)
(b)
Find the eigenvector for that eigenvalue, as well as a generalized eigenvector.
Answer.
Eigenvector \(\left[\begin{smallmatrix} 1 \\ 1 \end{smallmatrix}\right]\text{,}\) Generalized \(\left[\begin{smallmatrix} 1 \\ 0 \end{smallmatrix}\right]\)
(c)
Build a matrix \(E\) like before, but this time put the eigenvector in the first column and the generalized eigenvector in the second. Compute \(E^{-1}\text{.}\)
Answer.
\(E = \left[\begin{smallmatrix} 1 & 1 \\ 1 & 0 \end{smallmatrix}\right]\text{,}\) \(E^{-1} = \left[\begin{smallmatrix} 0 & 1 \\ 1 & -1 \end{smallmatrix}\right]\)
(d)
Find the product \(E^{-1}AE\text{.}\) Before, this gave us a diagonal matrix, but what do we get now?
Answer.
\(E^{-1}AE = \left[\begin{smallmatrix} 3 & 1 \\ 0 & 3 \end{smallmatrix}\right]\)

21.

Follow the process in ExerciseΒ 20 to find the Jordan Form of the matrix
\begin{equation*} \begin{bmatrix} -7 & 5 & 5 \\ -4 & 5 & 7 \\ -6 & 3 & 1 \end{bmatrix}. \end{equation*}
Answer.
\(\left[\begin{smallmatrix} 3 & 0 & 0 \\ 0 & -2 & 1 \\ 0 & 0 & -2 \end{smallmatrix}\right]\)