Section 3.5 Repeated Eigenvalues
Consider the following system
The characteristic polynomial of the system (3.5.1) is and This polynomial has a single root with eigenvector There is a single straight-line solution for this system (Figure 3.5.1). The strategy that we used to find the general solution to a system with distinct real eigenvalues will clearly have to be modified if we are to find a general solution to a system with a single eigenvalue.
Subsection 3.5.1 Repeated Eigenvalues
The remaining case that we must consider is when the characteristic equation of a matrix has repeated roots. The simplest such case is
The eigenvalues of are both Since any nonzero vector in is an eigenvector for Thus, solutions to this system are of the form
Each solution to our system lies on a straight line through the origin and either tends to the origin if or away from zero if
A more interesting case occurs if
Again, both eigenvalues are however, there is only one linearly independent eigenvector, which we can take to be Therefore, we have a single straight-line solution
To find other solutions, we will rewrite the system as
This is a partially coupled system (Subsection 2.4.1). If the solution of the second equation is
Therefore, the first equation becomes
which is a first-order linear differential equation with solution
Consequently, a solution to our system is
Example 3.5.2.
Consider the linear system
The matrix that corresponds to this system is
has a single eigenvalue, An eigenvector for is The general solution to our system is
Applying the initial conditions and the solution to our initial value problem is
Notice that we have only one straight-line solution (Figure 3.5.3).
Activity 3.5.1. Systems with Repeated Eigenvalues.
(a)
(b)
(c)
(d)
Find the general solution of
(e)
Sketch several solution curves for the system What do you notice about the solution curves, especially with respect to the straight-line solution?
Subsection 3.5.2 Solving Systems with Repeated Eigenvalues
If the characteristic equation has only a single repeated root, there is a single eigenvalue. If this is the situation, then we actually have two separate cases to examine, depending on whether or not we can find two linearly independent eigenvectors.
Example 3.5.4.
Suppose we have the system where
The single eigenvalue is but there are two linearly independent eigenvectors, and In this case our solution is
This is not too surprising since the system
is uncoupled and each equation can be solved separately.
Example 3.5.5.
Now let us consider the example where
Since the characteristic polynomial of is we have only a single eigenvalue with eigenvector This gives us one solution to our system, however, we still need a second solution.
Since all other eigenvectors of are a multiple of we cannot find a second linearly independent eigenvector, and we need to obtain the second solution in a different manner. Furthermore, since this system is not partially coupled, we will need a more general strategy.
First, we must find a vector such that To do this we can start with any nonzero vector that is not a multiple of say We then compute
Thus, we can take and our second solution is
Thus, our general solution is
If the eigenvalue is positive, the origin is a source. If it is negative, we will have a sink. Notice that we have only given a recipe for finding a solution to where has a repeated eigenvalue and any two eigenvectors are linearly dependent. We will justify our procedure in the next section (Subsection 3.6.6).
Activity 3.5.2. Systems with Repeated Eigenvalues—Finding a Second Solution.
(a)
(b)
(c)
(d)
(e)
To find a second solution of choose a vector that is not a multiple of and compute This should give you a vector of the form Let The second solution is What is the general solution?
(f)
Sketch several solution curves for the system What do you notice about the solution curves, especially with respect to the straight-line solution?
Subsection 3.5.3 Important Lessons
-
Ifthen
has one repeated real eigenvalue. The general solution to the system isIf then the solutions tend towards the origin as For the solutions tend away from the origin. -
Suppose that a system
has a single eigenvalue with an and that all other eigenvectors are multiples of Then one solution is To find a second linearly independent solution of choose a vector that is not a multiple of and compute This should give you a vector of the form Let The second solution is The general solution of will be
Reading Questions 3.5.4 Reading Questions
1.
Given a system with repeated eigenvalues, how many straight-line solutions are there?
2.
Given a system with repeated eigenvalues, explain why it is necessary to find a second linearly independent solution.
Exercises 3.5.5 Exercises
Solving Linear Systems with Repeated Eigenvalues.
Find the general solution of each of the linear systems in Exercise Group 3.5.5.1–8.
Solving Initial Value Problems.
Solve each of the following linear systems for the given initial values in Exercise Group 3.5.5.9–16.
17.
Consider the linear system where
Suppose the initial conditions for the solution curve are and We can use the following Sage code to plot the phase portrait of this system, including a solution curve and the straight-line solution.
xxxxxxxxxx
x, y, t = var('x y t') #declare the variables
F = [3*x + y, -4*x - y] #declare the system
# normalize the vector fields so that all of the arrows are the same length
n = sqrt(F[0]^2 + F[1]^2)
# plot the vector field
p = plot_vector_field((F[0]/n, F[1]/n), (x, -20, 20), (y, -20, 20), aspect_ratio = 1)
# solve the system for the initial condition t = 0, x = -2, y = 5
P1 = desolve_system_rk4(F, [x, y], ics=[0, -2, 5], ivar = t, end_points = 5, step = 0.01)
# grab the x and y values
S1 = [ [j, k] for i, j, k in P1]
# plot the solution
# Setting xmin, xmax, ymin, ymax will clip the window
# Try plotting without doing this to see what happens
p += line(S1, thickness = 2, axes_labels=['$x(t)$','$y(t)$'], xmin = -20, xmax = 20, ymin = -20, ymax = 20)
# plot the straight-line solutions
p += line([(-10, 20), (10, -20)], thickness = 2, color = "red")
p
Use Sage to graph the direction field for the system linear systems in Exercise Group 3.5.5.9–16. Plot the straight-line solutions and the solution curve for the given initial condition.
xxxxxxxxxx
You have attempted 1 of 3 activities on this page.