Section 3.5 Repeated Eigenvalues
Objectives
To understand and be able to solve systems
where is a matrix with a single eigenvalue
Subsection 3.5.1 Repeated Eigenvalues
The remaining case that we must consider is when the characteristic equation of a matrixExample 3.5.2.
Consider the linear system
The matrix that corresponds to this system is
has a single eigenvalue,
Applying the initial conditions
Notice that we have only one straight-line solution (Figure 3.5.3).
Activity 3.5.1. Systems with Repeated Eigenvalues.
Consider the system
(a)
Find the eigenvalues of
(b)
Find the eigenvectors
(c)
Find the straight-line solution of
(d)
Find the general solution of
(e)
Sketch several solution curves for the system
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
The single eigenvalue 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
Since the characteristic polynomial of
Since all other eigenvectors of
First, we must find a vector
Thus, we can take
Thus, our general solution is
Activity 3.5.2. Systems with Repeated Eigenvalues—Finding a Second Solution.
Consider the system
(a)
Find the eigenvalues of
(b)
Find the eigenvectors
(c)
Find the straight-line solution of
(d)
Find one solution,
(e)
To find a second solution of
(f)
Sketch several solution curves for the system
Subsection 3.5.3 Important Lessons
-
If
then
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
2.
Given a
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–4.
Solving Initial Value Problems.
Solve each of the following linear systems for the given initial values in Exercise Group 3.5.5.5–8.
9.
Consider the linear system
Suppose the initial conditions for the solution curve are
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