Skip to main content

Section 4.4 Eigenvalue method

Subsection Why Eigenvalues?

In this section we will learn how to solve linear homogeneous constant coefficient systems of ODEs by the eigenvalue method. Suppose we have such a system
\begin{equation*} {\vec{x}}' = P\vec{x} , \end{equation*}
where \(P\) is a constant square matrix. We wish to adapt the method for the single constant coefficient equation by trying the function \(e^{\lambda t}\text{.}\) However, \(\vec{x}\) is a vector. So we try \(\vec{x} = \vec{v} e^{\lambda t}\text{,}\) where \(\vec{v}\) is an arbitrary constant vector. We plug this \(\vec{x}\) into the equation to get
\begin{equation*} \underbrace{\lambda \vec{v} e^{\lambda t}}_{{\vec{x}}'} = \underbrace{P\vec{v} e^{\lambda t}}_{P\vec{x}} . \end{equation*}
We divide by \(e^{\lambda t}\) and notice that we are looking for a scalar \(\lambda\) and a vector \(\vec{v}\) that satisfy the equation
\begin{equation*} \lambda \vec{v} = P\vec{v} . \end{equation*}
This means that we are looking for an eigenvalue \(\lambda\) with corresponding eigenvector \(\vec{v}\) for the matrix \(P\text{.}\) When we can find these, we will get solutions to the original system of differential equations of the form
\begin{equation*} \vec{x}(t) = \vec{v}e^{\lambda t}. \end{equation*}
We get the easiest route to solutions when the matrix \(P\) has all real eigenvalues and the eigenvalues are all distinct, and can extend to deal with the complications that arise from complex and repeated eigenvalues.
Another way to view these types of solutions are as β€œstraight-line solutions.” A system of differential equations of the form
\begin{equation*} {\vec{x}}' = P\vec{x} , \end{equation*}
is an autonomous system of differential equations, because there is no explicit dependence on \(t\) on the right-hand side. When we solved autonomous equations in SectionΒ 1.7, we started by looking for equilibrium solutions and built up from there. In this particular case, we are looking for vectors \(\vec{x}\) so that \(P\vec{x} = 0\text{.}\) As long as \(P\) is invertible, the only vector that satisfies this is \(\vec{x} = 0\text{.}\) So, that’s not super interesting, and doesn’t really tell us too much about the solution to the problem.
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.1. Position vector and possible direction vectors for straight line solutions.
The next more involved type of solution we could look for is a straight-line solution. The idea is that this solution will either move directly (in a straight-line) towards or away from the origin. In the first order autonomous equation case, all of our solutions did this; they either moved towards or away from these equilibrium solutions. This may not be the case for systems, but we can try to find them. If a solution is going to move directly towards or away from the origin, then the direction of change for the solution must be parallel to the position vector. In FigureΒ 4.4.1, the vectors that point in the same or opposite direction of \(\vec{x}\) will give rise to a straight-line solution, but vectors that do not point in this direction will give solutions that do not follow a straight-line through the origin.
This criterion means that we need to have
\begin{equation*} \vec{x}' = \lambda \vec{x} \end{equation*}
for some constant \(\lambda\text{.}\) If this is the case, then we have
\begin{equation*} P\vec{x} = \lambda \vec{x} \end{equation*}
and this is the equation for eigenvalues and eigenvectors of \(P\text{.}\) We are back to the same type of solution that we found previously.

Subsection The eigenvalue method with distinct real eigenvalues

OK. We have the system of equations
\begin{equation*} {\vec{x}}' = P\vec{x} . \end{equation*}
We find the eigenvalues \(\lambda_1\text{,}\) \(\lambda_2\text{,}\) …, \(\lambda_n\) of the matrix \(P\text{,}\) and corresponding eigenvectors \(\vec{v}_1\text{,}\) \(\vec{v}_2\text{,}\) …, \(\vec{v}_n\text{.}\) Now we notice that the functions \(\vec{v}_1 e^{\lambda_1 t}\text{,}\) \(\vec{v}_2 e^{\lambda_2 t}\text{,}\) …, \(\vec{v}_n e^{\lambda_n t}\) are solutions of the homogeneous system of equations and hence \(\vec{x} = c_1 \vec{v}_1 e^{\lambda_1 t} + c_2 \vec{v}_2 e^{\lambda_2 t} + \cdots + c_n \vec{v}_n e^{\lambda_n t}\) is a solution by superposition.
The corresponding fundamental matrix solution is
\begin{equation*} X(t) = \bigl[\, \vec{v}_1 e^{\lambda_1 t} \quad \vec{v}_2 e^{\lambda_2 t} \quad \cdots \quad \vec{v}_n e^{\lambda_n t} \,\bigr]. \end{equation*}
That is, \(X(t)\) is the matrix whose \(j^{\text{th}}\) column is \(\vec{v}_j e^{\lambda_j t}\text{.}\)

Example 4.4.3.

Consider the system
\begin{equation*} {\vec{x}}' = \begin{bmatrix} 2 & 1 & 1 \\ 1 & 2 & 0 \\ 0 & 0 & 2 \end{bmatrix} \vec{x} . \end{equation*}
Find the general solution.
Solution.
Earlier, we found the eigenvalues are \(1,2,3\text{.}\) We found the eigenvector \(\left[ \begin{smallmatrix} 1 \\ 1 \\ 0 \end{smallmatrix} \right]\) for the eigenvalue 3. Similarly we find the eigenvector \(\left[ \begin{smallmatrix} 1 \\ -1 \\ 0 \end{smallmatrix} \right]\) for the eigenvalue 1, and \(\left[ \begin{smallmatrix} 0 \\ 1 \\ -1 \end{smallmatrix} \right]\) for the eigenvalue 2 (exercise: check). Hence our general solution is
\begin{equation*} \vec{x} = c_1 \begin{bmatrix} 1 \\ -1 \\ 0 \end{bmatrix} e^t + c_2 \begin{bmatrix} 0 \\ 1 \\ -1 \end{bmatrix} e^{2t} + c_3 \begin{bmatrix} 1 \\ 1 \\ 0 \end{bmatrix} e^{3t} = \begin{bmatrix} c_1 e^t+c_3 e^{3t} \\ -c_1 e^t + c_2 e^{2t} + c_3 e^{3t} \\ - c_2 e^{2t} \end{bmatrix} . \end{equation*}
In terms of a fundamental matrix solution,
\begin{equation*} \vec{x} = X(t)\, \vec{c} = \begin{bmatrix} e^t & 0 & e^{3t} \\ -e^t & e^{2t} & e^{3t} \\ 0 & -e^{2t} & 0 \end{bmatrix} \begin{bmatrix} c_1 \\ c_2 \\ c_3 \end{bmatrix} . \end{equation*}

Checkpoint 4.4.4.

Overall, the process for finding the solution for real and distinct eigenvalues is to first find the eigenvalues and eigenvectors of the matrix \(P\text{.}\) Once we have these, we get \(n\) linearly independent solutions of the form \(\vec{x}_i(t) = \vec{v}_ie^{\lambda_i t}\text{,}\) so that the general solution is of the form
\begin{equation*} \vec{x}(t) = c_1\vec{v}_1e^{\lambda_1 t} + c_2\vec{v}_2e^{\lambda_2 t} + \cdots + c_n\vec{v}_ne^{\lambda_n t}. \end{equation*}
Then, if we need to solve for an initial condition, we figure out the coefficients \(c_1\text{,}\) \(c_2\text{,}\) ..., \(c_n\) to satisfy this condition.
Note: If we write a single homogeneous linear constant coefficient \(n^{\text{th}}\) order equation as a first order system (as we did in SectionΒ 4.1), then the eigenvalue equation
\begin{equation*} \det(P - \lambda I) = 0 \end{equation*}
is essentially the same as the characteristic equation we got in SectionΒ 2.1 and SectionΒ 2.7. See the exercises for details about this.

Example 4.4.5.

Solve the initial value problem
\begin{equation*} \vec{x}' = \begin{bmatrix} 0 & 4 \\ -3 & -7 \end{bmatrix}\vec{x} \qquad \vec{x}(0) = \begin{bmatrix} 1 \\ 1 \end{bmatrix}. \end{equation*}
Solution.
Since we are in the case of a constant-coefficient linear system, we start by looking for the eigenvalues and eigenvectors of the coefficient matrix \(P\text{.}\) To do this, we compute
\begin{equation*} \det(P - \lambda I) = (0-\lambda)(-7-\lambda) - (4)(-3) = \lambda^2 + 7\lambda + 12. \end{equation*}
This polynomial factors as \((\lambda + 3)(\lambda + 4)\text{,}\) and so the two eigenvalues are \(\lambda_1 = -3\) and \(\lambda_2 = -4\text{.}\)
Next, we need to find the corresponding eigenvectors. For \(\lambda = -3\text{,}\) we get the matrix equation
\begin{equation*} (P + 3I)\vec{v} = \begin{bmatrix} 3 & 4 \\ -3 & -4 \end{bmatrix} \vec{v} = \vec{0}. \end{equation*}
The two equations that you get here are redundant, which is \(3v_1 + 4v_2 = 0\text{.}\) One way to satisfy this is \(v_1 = 4\text{,}\) \(v_2 = -3\text{,}\) so that the eigenvector is \(\left[\begin{smallmatrix} 4 \\ -3 \end{smallmatrix} \right]\text{.}\)
For \(\lambda = -4\text{,}\) the matrix becomes
\begin{equation*} (P + 4I)\vec{v} = \begin{bmatrix} 4 & 4 \\ -3 & -3 \end{bmatrix}\vec{v} = 0 \end{equation*}
so the eigenvector here is \(\left[ \begin{smallmatrix} 1 \\ -1 \end{smallmatrix} \right]\text{.}\) Therefore, the general solution to this differential equation, by superposition, is
\begin{equation*} \vec{x}(t) = c_1 \begin{bmatrix} 4 \\ -3 \end{bmatrix}e^{-3t} + c_2 \begin{bmatrix} 1 \\ -1 \end{bmatrix}e^{-4t}. \end{equation*}
Finally, we have to solve the initial value problem using the initial conditions. If we plug in \(t=0\text{,}\) we get the equation
\begin{equation*} \vec{x}(0) = c_1 \begin{bmatrix} 4 \\ -3 \end{bmatrix} + c_2 \begin{bmatrix} 1 \\ -1 \end{bmatrix} = \begin{bmatrix} 1 \\ 1 \end{bmatrix}. \end{equation*}
This results in needing to solve the system of equations
\begin{equation*} 4c_1 + c_2 = 1 \qquad -3c_1 - c_2 = 1. \end{equation*}
These can be solved in any way, including row reduction. We will start by adding the two equations together, which gives \(c_1 = 2\text{,}\) and then the first equation implies that \(c_2 = -7\text{.}\) Therefore, the solution to the initial value problem is
\begin{equation*} \vec{x}(t) = 2 \begin{bmatrix} 4 \\ -3 \end{bmatrix}e^{-3t} - 7 \begin{bmatrix} 1 \\ -1 \end{bmatrix}e^{-4t} = \begin{bmatrix} 8e^{-3t} - 7e^{-4t} \\ -6e^{-3t} + 7e^{-4t} \end{bmatrix}. \end{equation*}

Subsection Phase Portraits

Now that we have these solutions, we want to get an idea for what they look like in the plane. We spent a lot of time in first order equations looking at direction fields, as well as phase lines for autonomous equations. We want to develope the same type of intuition for two-component systems in the plane, because much intuition can be obtained by studying this simple case. Suppose we use coordinates \((x,y)\) for the plane as usual, and suppose \(P = \left[ \begin{smallmatrix} a & b \\ c & d \end{smallmatrix} \right]\) is a \(2 \times 2\) matrix. Consider the system
\begin{equation} \begin{bmatrix} x \\ y \end{bmatrix} ' = P \begin{bmatrix} x \\ y \end{bmatrix} \qquad \text{or} \qquad \begin{bmatrix} x \\ y \end{bmatrix} ' = \begin{bmatrix} a & b \\ c & d \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} .\tag{4.4.1} \end{equation}
The system is autonomous (compare this section to SectionΒ 1.7) and so we can draw a vector field (see the end of SectionΒ 4.1). We will be able to visually tell what the vector field looks like and how the solutions behave, once we find the eigenvalues and eigenvectors of the matrix \(P\text{.}\) The goal is to be able to sketch what the different trajectories of the solutions look like for a variety of initial conditions, as well as classify the general type of picture that results depending on the matrix \(P\text{.}\)
Case 1. Suppose that the eigenvalues of \(P\) are real and positive. We find two corresponding eigenvectors and plot them in the plane. For example, take the matrix \(\left[ \begin{smallmatrix} 1 & 1 \\ 0 & 2 \end{smallmatrix} \right]\text{.}\) The eigenvalues are 1 and 2 and corresponding eigenvectors are \(\left[ \begin{smallmatrix} 1 \\ 0 \end{smallmatrix} \right]\) and \(\left[ \begin{smallmatrix} 1 \\ 1 \end{smallmatrix} \right]\text{.}\) See FigureΒ 4.4.6.
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.6. Eigenvectors of \(P\text{.}\)
Suppose the point \((x,y)\) is on the line determined by an eigenvector \(\vec{v}\) for an eigenvalue \(\lambda\text{.}\) That is, \(\left[ \begin{smallmatrix} x \\ y \end{smallmatrix} \right] = \alpha \vec{v}\) for some scalar \(\alpha\text{.}\) Then
\begin{equation*} \begin{bmatrix} x \\ y \end{bmatrix} ' = P \begin{bmatrix} x \\ y \end{bmatrix} = P ( \alpha \vec{v} ) = \alpha ( P \vec{v} ) = \alpha \lambda \vec{v} . \end{equation*}
The derivative is a multiple of \(\vec{v}\) and hence points along the line determined by \(\vec{v}\text{.}\) As \(\lambda > 0\text{,}\) the derivative points in the direction of \(\vec{v}\) when \(\alpha\) is positive and in the opposite direction when \(\alpha\) is negative. Let us draw the lines determined by the eigenvectors, and let us draw arrows on the lines to indicate the directions. See FigureΒ 4.4.7.
We fill in the rest of the arrows for the vector field and we also draw a few solutions. See FigureΒ 4.4.8. The picture looks like a source with arrows coming out from the origin. Hence we call this type of picture a source or sometimes an unstable node. Notice the two eigenvectors are drawn on the entire vector field figure with arrows, and the straight-line solutions follow them.
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.7. Eigenvectors of \(P\) with directions.
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.8. Example source vector field with eigenvectors and solutions.
We also need to look at how the solution curves are drawn to determine the appropriate shape, even when we don’t have the vector field. In this example, we have two positive eigenvalues, with \(\left[\begin{smallmatrix} 1 \\ 0 \end{smallmatrix}\right]\) as an eigenvector for eigenvalue 1, and \(\left[\begin{smallmatrix} 1 \\ 1 \end{smallmatrix}\right]\) as an eigenvector for eigenvalue 2, which gives rise to a general solution
\begin{equation*} \vec{x}(t) = C_1 \begin{bmatrix} 1\\ 0 \end{bmatrix}e^t + C_2 \begin{bmatrix} 1 \\ 1 \end{bmatrix}e^{2t}. \end{equation*}
As \(t\) gets larger, the term with \(e^{2t}\) on it is larger and more important, so the solution curves move parallel to the \(\left[\begin{smallmatrix} 1 \\ 1 \end{smallmatrix}\right]\) line as \(t\rightarrow \infty\text{,}\) which in this case, means as the solution goes away from the origin. In the other direction, as \(t \rightarrow -\infty\text{,}\) the \(e^{2t}\) term vanishes first, meaning the \(e^t\) term is more important. So the solution curves will leave from the origin (since this happens as \(t \rightarrow -\infty\)) in the direction of the \(\left[\begin{smallmatrix} 1 \\ 0 \end{smallmatrix}\right]\) line.
That is exactly what we see in FigureΒ 4.4.8; the solutions leave the origin along the \(\left[\begin{smallmatrix} 1 \\ 0 \end{smallmatrix}\right]\) line and then head to infinity parallel to the \(\left[\begin{smallmatrix} 1 \\ 1 \end{smallmatrix}\right]\) line. Within the figure here, they don’t quite get parallel to those lines, but they will get more and more parallel as they get farther away from the origin.
Case 2. Suppose both eigenvalues are negative. For example, take the negation of the matrix in case 1, \(\left[ \begin{smallmatrix} -1 & -1 \\ 0 & -2 \end{smallmatrix} \right]\text{.}\) The eigenvalues are \(-1\) and \(-2\) and corresponding eigenvectors are the same, \(\left[ \begin{smallmatrix} 1 \\ 0 \end{smallmatrix} \right]\) and \(\left[ \begin{smallmatrix} 1 \\ 1 \end{smallmatrix} \right]\text{.}\) The calculation and the picture are almost the same. The only difference is that the eigenvalues are negative and hence all arrows are reversed. We get the picture in FigureΒ 4.4.9. We call this kind of picture a sink or an asymptotically stable node.
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.9. Example sink vector field with eigenvectors and solutions.
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.10. Example saddle vector field with eigenvectors and solutions.
In terms of the shape of the solution curves, the same type of argument works. This general solution will have terms involving \(e^{-t}\) and \(e^{-2t}\text{.}\) The solution is tending towards the origin as \(t \rightarrow \infty\text{,}\) and as it does, the \(e^{-2t}\) term vanishes first. Therefore, the solution goes to the origin along the line corresponding to \(e^{-t}\text{,}\) which is \(\left[\begin{smallmatrix} 1 \\ 0 \end{smallmatrix}\right]\text{.}\) As \(t \rightarrow -\infty\text{,}\) the reverse happens, and the \(e^{-2t}\) term matters more, so the solution comes in from infinity parallel to the \(\left[\begin{smallmatrix} 1 \\ 1 \end{smallmatrix}\right]\) line. Exactly where this β€œparallel” component of the line is depends on the initial condition. This is again what we see in FigureΒ 4.4.9.
Case 3. Suppose one eigenvalue is positive and one is negative. For example the matrix \(\left[ \begin{smallmatrix} 1 & 1 \\ 0 & -2 \end{smallmatrix} \right]\text{.}\) The eigenvalues are \(1\) and \(-2\) and corresponding eigenvectors are \(\left[ \begin{smallmatrix} 1 \\ 0 \end{smallmatrix} \right]\) and \(\left[ \begin{smallmatrix} 1 \\ -3 \end{smallmatrix} \right]\text{.}\) We reverse the arrows on one line (corresponding to the negative eigenvalue) and we obtain the picture in FigureΒ 4.4.10. We call this picture a saddle point.
For saddle points, it is slightly more clear what the shape should be. The general solution for the system drawn in FigureΒ 4.4.10 is
\begin{equation*} \vec{x}(t) = C_1 \begin{bmatrix} 1 \\ 0 \end{bmatrix}e^t + C_2 \begin{bmatrix} 1 \\ -3 \end{bmatrix}e^{-2t}. \end{equation*}
As \(t\rightarrow \infty\text{,}\) the \(e^{-2t}\) term vanishes, so only the \(\left[\begin{smallmatrix} 1 \\ 0 \end{smallmatrix}\right]e^t\) term remains, meanin the solution approaches the \(\left[\begin{smallmatrix} 1 \\ 0 \end{smallmatrix}\right]\) line. In the other direction, as \(t \rightarrow -\infty\text{,}\) the \(e^t\) term vanishes, meaning that our solution approaches the straight-line solution with negative eigenvalue, which in this case is the \(\left[\begin{smallmatrix} 1 \\ -3 \end{smallmatrix}\right]\) line.

Exercises Exercises

1.

Consider the system \(x_1' = 2 x_1\text{,}\) \(x_2' = 3 x_2\text{.}\)
(a)
Find the general solution of \(x_1' = 2 x_1\text{,}\) \(x_2' = 3 x_2\) using the eigenvalue method (first write the system in the form \({\vec{x}}' = A \vec{x}\)).
Answer.
\(C_1\left[\begin{smallmatrix} 1 \\ 0 \end{smallmatrix}\right]e^{2t} + C_2\left[\begin{smallmatrix} 0 \\ 1 \end{smallmatrix}\right]e^{3t}\)
(b)
Solve the system by solving each equation separately and verify you get the same general solution.
Answer.
\(C_1\left[\begin{smallmatrix} 1 \\ 0 \end{smallmatrix}\right]e^{2t} + C_2\left[\begin{smallmatrix} 0 \\ 1 \end{smallmatrix}\right]e^{3t}\)

2.

Find the general solution of \(x_1' = 3 x_1 + x_2\text{,}\) \(x_2' = 2 x_1 + 4 x_2\) using the eigenvalue method and sketch the phase portrait for this system of differential equations.
Answer.
\(C_1 \left[\begin{smallmatrix} 1 \\ -1 \end{smallmatrix}\right]e^{2t} + C_2\left[\begin{smallmatrix} 1 \\ 2 \end{smallmatrix}\right]e^{-t}\)
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.11. Phase portrait sketch for the system \(x_1' = 3 x_1 + x_2\text{,}\) \(x_2' = 2 x_1 + 4 x_2\text{.}\)

3.

Solve \(x_1' = x_2\text{,}\) \(x_2' = x_1\) using the eigenvalue method and sketch the phase portrait for this system of differential equations.
Answer.
\(\vec{x} = C_1 \left[ \begin{smallmatrix} 1 \\ 1 \end{smallmatrix}\right] e^{t} + C_2 \left[ \begin{smallmatrix} 1 \\ -1 \end{smallmatrix}\right] e^{-t}\)
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.12. Phase portrait sketch for the system \(x_1' = x_2\text{,}\) \(x_2' = x_1\text{.}\)

4.

Amino acid dating can be used by forensic scientists to determine the time of death in situations where other techniques might not work. These amino acids are sneaky, and they exist in a left-handed form (L) and a right-handed form (D), which are called enantiomers. While you’re alive, your body keeps all your amino acids in the L form. Once you die, your body no longer regulates your amino acids, and every so often they flip a coin and decide whether to switch into the opposite form. This way, when someone finds your body in a dumpster, they can pull out your teeth and measure the racemization ratio, which is the ratio of D-enantiomers to L-enantiomers.
Denote by \(D(t)\) and \(L(t)\text{,}\) respectively, the proportions of D- and L-enantiomers found in your teeth, where \(t\) is measured in years after death. Since this is Math class, the proportions are governed by a system of differential equations, such as
\begin{equation} \begin{bmatrix} L' \\ D' \end{bmatrix} = \begin{bmatrix} -.02& .02\\ .02 & -.02 \end{bmatrix}\begin{bmatrix} L\\ D \end{bmatrix}.\tag{4.4.2} \end{equation}
(a)
Find the general solution to (4.4.2).
Answer.
\(\vec{x}(t) = C_1 \left[\begin{smallmatrix} -1 \\ 1 \end{smallmatrix}\right]e^{-t/25} + C_2\left[\begin{smallmatrix} 1 \\ 1 \end{smallmatrix}\right]\)
(b)
Solve (4.4.2) with initial conditions \(D(0) = 0\) and \(L(0) = 1\text{,}\) and express the solution in component form. Describe what happens to the quantities \(D(t)\) and \(L(t)\) in the long run.
Answer.
\(L(t) = \frac{1}{2} + \frac{1}{2}e^{-t/25},\ D(t) = \frac{1}{2} - \frac{1}{2}e^{-t/25}\text{.}\) Both go to \(1/2\text{.}\)
(c)
Given the above initial conditions, if the racemization ratio in your teeth is currently 1:3, how long ago did you die?
Answer.
\(t = 25\ln(2)\approx 17.33\) years

5.

Consider the matrix \(A = \left[ \begin{smallmatrix} 9 & -2 & -6 \\ -8 & 3 & 6 \\ 10 & -2 & -6 \end{smallmatrix} \right]\)
(a)
Compute the eigenvalues and eigenvectors of \(A\text{.}\)
Answer.
\(\lambda_1 = 1\text{,}\) \(\vec{v}_1 = \left[\begin{smallmatrix} 1/2 \\ -1 \\ 1 \end{smallmatrix}\right]\text{.}\) \(\lambda_2 = 2\text{,}\) \(\vec{v}_2 = \left[\begin{smallmatrix} 2 \\ -2 \\ 3 \end{smallmatrix}\right]\text{.}\) \(\lambda_3 = 3\text{,}\) \(\vec{v}_3 = \left[\begin{smallmatrix} 3 \\ -3 \\ 4 \end{smallmatrix}\right]\)
(b)
Find the general solution of \({\vec{x}}' = A \vec{x}\text{.}\)
Answer.
\(\vec{x}(t) = C_1\left[\begin{smallmatrix} 1/2 \\ -1 \\ 1 \end{smallmatrix}\right]e^t + C_2\left[\begin{smallmatrix} 2 \\ -2 \\ 3 \end{smallmatrix}\right]e^{2t} + C_3\left[\begin{smallmatrix} 3 \\ -3 \\ 4 \end{smallmatrix}\right]e^{3t}\)

6.

Consider the matrix \(A= \left[ \begin{smallmatrix} 1 & 0 & 3 \\ -1 & 0 & 1 \\ 2 & 0 & 2 \end{smallmatrix}\right]\text{.}\)
(a)
Compute the eigenvalues and eigenvectors of \(A\)
Answer.
Eigenvalues: \(4,\ 0,\ -1\) Eigenvectors: \(\left[ \begin{smallmatrix} 1 \\ 0 \\ 1 \end{smallmatrix}\right]$, $\left[ \begin{smallmatrix} 0 \\ 1 \\ 0 \end{smallmatrix}\right]$, $\left[ \begin{smallmatrix} 3 \\ 5 \\ -2 \end{smallmatrix}\right]\)
(b)
Solve the system \(\vec{x}\,' = A \vec{x}\text{.}\)
Answer.
\(\vec{x} = C_1 \left[ \begin{smallmatrix} 1 \\ 0 \\ 1 \end{smallmatrix}\right] e^{4t} + C_2 \left[ \begin{smallmatrix} 0 \\ 1 \\ 0 \end{smallmatrix}\right] + C_3 \left[ \begin{smallmatrix} 3 \\ 5 \\ -2 \end{smallmatrix}\right] e^{-t}\)

7.

Let \(a,b,c,d,e,f\) be numbers. Find the eigenvalues of \(\left[ \begin{smallmatrix} a & b & c \\ 0 & d & e \\ 0 & 0 & f \\ \end{smallmatrix} \right]\text{.}\)
Answer.

8.

Find the general solution of the system
\begin{equation*} {\vec{x}}' = \begin{bmatrix} -7 & 1 \\ -12 & 0 \end{bmatrix} \vec{x} \end{equation*}
and sketch the phase portrait for this system.
Answer.
\(\vec{x}(t) = C_1 \left[\begin{smallmatrix} 1 \\ 3 \end{smallmatrix}\right]e^{-4t} + C_2 \left[\begin{smallmatrix} 1 \\ 4 \end{smallmatrix}\right] e^{-3t}\)
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.13. Phase portrait sketch for the system \({\vec{x}}' = \begin{bmatrix} -7 & 1 \\ -12 & 0 \end{bmatrix} \vec{x}\text{.}\)

9.

Find the general solution of the system
\begin{equation*} {\vec{x}}' = \begin{bmatrix} -13 & -12 \\ 9 & 8 \end{bmatrix} \vec{x} \end{equation*}
and draw a sketch for the phase portrait.
Answer.
\(\vec{x}(t) = C_1 \left[\begin{smallmatrix} -4 \\ 3 \end{smallmatrix}\right]e^{-4t} + C_2 \left[\begin{smallmatrix} 1 \\ -1 \end{smallmatrix}\right] e^{-t}\)
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.14. Phase portrait sketch for the system \({\vec{x}}' = \begin{bmatrix} -13 & -12 \\ 9 & 8 \end{bmatrix} \vec{x}\text{.}\)

10.

Find the general solution of the system
\begin{equation*} {\vec{x}}' = \begin{bmatrix} -2 & -6 & 0 \\ 4 & 8 & 0 \\ -4 & -7 & 3 \end{bmatrix} \vec{x}. \end{equation*}
Answer.
\(\vec{x}(t) = C_1 \left[\begin{smallmatrix} 0 \\ 0 \\ 1 \end{smallmatrix}\right]e^{3t} + C_2 \left[\begin{smallmatrix} -1 \\ 1 \\ -3 \end{smallmatrix}\right] e^{4t} + C_3 \left[\begin{smallmatrix} 3 \\ -2 \\ -2 \end{smallmatrix}\right] e^{2t}\)

11.

Find the general solution of the system
\begin{equation*} {\vec{x}}' = \begin{bmatrix} -6 & 2 & 4 \\ -2 & -1 & 4 \\ -2 & 1 & 0 \end{bmatrix} \vec{x}. \end{equation*}
Answer.
\(\vec{x}(t) = C_1 \left[\begin{smallmatrix} 2 \\ 0 \\ 1 \end{smallmatrix}\right]e^{-4t} + C_2 \left[\begin{smallmatrix} 2 \\ 3 \\ 1 \end{smallmatrix}\right] e^{-t} + C_3 \left[\begin{smallmatrix} 1 \\ 2 \\ 0 \end{smallmatrix}\right] e^{-2t}\)

12.

Solve the initial value problem
\begin{equation*} {\vec{x}}' = \begin{bmatrix} -3 & 0 \\ 3 & -4 \end{bmatrix} \vec{x} \qquad \vec{x}(0) = \begin{bmatrix} -1 \\ 2 \end{bmatrix}. \end{equation*}
Answer.
\(\vec{x}(t) = -\left[\begin{smallmatrix} 1 \\ 3 \end{smallmatrix}\right]e^{-3t} + 5\left[\begin{smallmatrix} 0 \\ 1 \end{smallmatrix}\right]e^{-4t}\)

13.

Solve the initial value problem
\begin{equation*} {\vec{x}}' = \begin{bmatrix} 1 & -3 \\ 2 & 6 \end{bmatrix} \vec{x} \qquad \vec{x}(0) = \begin{bmatrix} 1 \\ 1 \end{bmatrix}. \end{equation*}
Answer.
\(\vec{x}(t) = -5\left[\begin{smallmatrix} 1 \\ -1 \end{smallmatrix}\right]e^{4t} + 2\left[\begin{smallmatrix} 3 \\ -2 \end{smallmatrix}\right]e^{3t}\)

14.

Solve the initial value problem
\begin{equation*} {\vec{x}}' = \begin{bmatrix} 7 & 4 & 0 \\ -8 & -5 & 0 \\ 17 & 7 & -2 \end{bmatrix} \vec{x} \qquad \vec{x}(0) = \begin{bmatrix} -3 \\ 2 \\ 2 \end{bmatrix}. \end{equation*}
Answer.
\(\vec{x}(t) = \left[\begin{smallmatrix} 1 \\ -2 \\ 3 \end{smallmatrix}\right]e^{-t} + 7\left[\begin{smallmatrix} 0 \\ 0 \\ 1 \end{smallmatrix}\right]e^{-2t} - 4\left[\begin{smallmatrix} 1 \\ -1 \\ 2 \end{smallmatrix}\right]e^{3t}\)

15.

Find the general solution of the system
\begin{equation*} {\vec{x}}' = \begin{bmatrix} -2 & 1 \\ 3 & -4 \\ \end{bmatrix} \vec{x} \end{equation*}
and draw a sketch for the phase portrait.
Answer.
\(\vec{x}(t) = C_1 \left[\begin{smallmatrix} 1 \\ 1 \end{smallmatrix}\right]e^{-t} + C_2 \left[\begin{smallmatrix} -1 \\ 3 \end{smallmatrix}\right] e^{-5t}\)
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.15. Phase portrait sketch for the system \({\vec{x}}' = \begin{bmatrix} -2 & 1 \\ 3 & -4 \\ \end{bmatrix} \vec{x}\text{.}\)

16.

Find the general solution of the system
\begin{equation*} {\vec{x}}' = \begin{bmatrix} 3 & 6 \\ 2 & -1 \\ \end{bmatrix}\vec{x} \end{equation*}
and draw a sketch for the phase portrait.
Answer.
\(\vec{x}(t) = C_1 \left[\begin{smallmatrix} 3 \\ 1 \end{smallmatrix}\right]e^{5t} + C_2 \left[\begin{smallmatrix} -1 \\ 1 \end{smallmatrix}\right] e^{-3t}\)
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.16. Phase portrait sketch for the system \({\vec{x}}' = \begin{bmatrix} 3 & 6 \\ 2 & -1 \\ \end{bmatrix}\vec{x}\text{.}\)

17.

Find the general solution of the system
\begin{equation*} {\vec{x}}' = \begin{bmatrix} 6 & -2 \\ 5 & -1 \\ \end{bmatrix} \vec{x} \end{equation*}
and draw a sketch for the phase portrait.
Answer.
\(\vec{x}(t) = C_1 \left[\begin{smallmatrix} 1 \\ 1 \end{smallmatrix}\right]e^{4t} + C_2 \left[\begin{smallmatrix} 2 \\ 5 \end{smallmatrix}\right] e^{t}\text{.}\)
ALT TEXT HERE
IMAGE DESCRIPTION HERE
Figure 4.4.17. Phase portrait sketch for the system \({\vec{x}}' = \begin{bmatrix} 6 & -2 \\ 5 & -1 \\ \end{bmatrix} \vec{x}\text{.}\)