MATH 219: Spring 2021-22
MATH 219: Spring 2021-22
Spring 2021-22
Lecture 14
Lecture notes by Özgür Kişisel
y (n) + a1 y (n−1) + . . . + an y = 0
Recall from the theory of first order linear systems discussed in the previous lectures
that
x = eAt c = P eJt P −1 c,
or alternatively, we can use another fundamental matrix (and another set of con-
stants) to write
x = Ψ(t)c = P eJt c,
where J is the Jordan form of A and the columns of P are eigenvectors or generalized
eigenvectors. Therefore, this formula will also lead us to the solution of the ODE for
1
y, since y = x1 . In a sense we already know how to solve this problem then. But,
instead of going through the whole lengthy procedure and solving the full system,
we will find some shortcuts which will let us compute y(t) in a quicker way. We
start by finding the characteristic polynomial of A.
2 × 2 case:
−λ 1 2
−a2 −a1 − λ = λ + a1 λ + a2
3 × 3 case:
−λ 1 0
−λ 1 1 0
0 −λ 1 = (−λ) + (−a3 )
−a3 −a2 −a1 − λ −a2 −a1 − λ −λ 1
= −(λ3 + a1 λ2 + a2 λ + a3 )
In this computation, the determinant was expanded with respect to the first column.
We make a guess for the n × n case:
det(A − λI) = pn (λ) = (−1)n (λn + a1 λn−1 + . . . + an ).
Let us prove that this guess is correct, by induction. The assertion is true for n = 2
as seen above. Suppose that it is true up to n. For the (n + 1) × (n + 1) case, again
by expanding the determinant with respect to the first column, we have:
−λ 1 0 . . . 0
0
−λ 1 0 . . .
... = (−λ)pn (λ) + (−1)n (−an+1 )
0
. . . 0 −λ 1
−an+1 −an . . . −a2 −a1 − λ
= (−1)n+1 (λn+1 + a1 λn + . . . + an λ + an+1 )
This proves the result.
This result lets us compute the eigenvalues without actually writing down a matrix:
Simply copy the coefficients of the ODE into a polynomial as its coefficients and find
the roots of this resulting polynomial. On the other hand, we will see that computing
the eigenvectors of the matrix will not be necessary at all. Let us investigate the
possibilities for the roots of the characteristic equation.
2
1.1 Distinct eigenvalues
Suppose that the n roots (real or complex) of the equation λn +a1 λn−1 +. . .+an = 0
are distinct. Then A is diagonalizable. We have
λt
e 1 0 ... 0
0 e λ2 t 0 . . .
Ψ(t) = P
...
λn t
0 ... 0 e
where c1 , c2 , . . . , cn are arbitrary constants. If some of the λ’s are complex conjugate
pairs, then the corresponding complex solutions should be replaced by their real and
imaginary parts as in the case of systems with complex eigenvalues.
y = c1 et + c2 e−t
with c1 , c2 ∈ R.
3
For the pair of complex conjugate roots λ1 and λ2 we get
√ √ √
√ ! √ √ √
√ !
2 2 2 2 2 2 2 2
Re(e( 2 +i 2 )t ) = e 2 t cos t , Im(e( 2 +i 2 )t ) = e 2 t sin t
2 2
where c1 , c2 , c3 , c4 ∈ R.
c1 + c2 = 2
−2c1 − c2 = 1.
y = −3e−2t + 5e−t .
4
polynomial by hand. In the current example, let us observe that λ = −1 is a root.
To find the other roots, divide the polynomial 4λ3 + λ + 5 by λ + 1. We get
4λ3 + λ + 5 = (λ + 1)(4λ2 − 4λ + 5)
1 1
= 4(λ + 1) λ − +i λ− −i .
2 2
Therefore the roots are −1, 21 + i, 12 − i. They are all distinct. We can deduce that
all solutions of the ODE are
Let us now consider the case where some of the roots of the characteristic equation
are repeated. We will first discuss the case when the nth degree polynomial has an
n-fold repeated root λ. The general case is obtained just by putting together the
solutions for different eigenvalues.
We claim that corresponding to the n-fold repeated root λ, there must be only one
Jordan block
λ 1
λ 1
J =
. . . 1
λ
and not multiple, smaller Jordan blocks. The reason for this is as follows: For a
single Jordan block, the functions that we obtain from eJt are linear combinations
of eλt , teλt , . . . , tn−1 eλt . There are precisely n of them, and this is barely enough. If
there were multiple Jordan blocks, we wouldn’t get all the way up to tn−1 eλt and
there would be less than n linearly independent solutions, a contradiction. Therefore
all solutions of the system are
If there are other eigenvalues as well, the solution is just the linear combination of
the solutions obtained from different eigenvalues. For complex conjugate pairs, we
take the real and imaginary parts of the corresponding exponentials.
5
Example 1.5 Solve the initial value problem y 00 − 2y 0 + y = 0, y(0) = 1, y 0 (0) = −1.
Solution: The characteristic equation is λ2 − 2λ + 1 = 0 whose roots are λ1 = λ2 =
1. Therefore the general solution is
y = c1 et + c2 tet .
c1 + 0 = 1
c1 + c2 = −1
y = et − 2tet .
λ4 + 6λ2 + 9 = 0
(λ2 + 3)2 = 0
√ 2 √
(λ − i 3) (λ + i 3)2 = 0
√ √
Therefore the roots are λ1 = λ2 = √ i 3 and λ3 =√λ4 = −i 3. For one pair of
complex conjugate
√ roots,√we get cos( 3t) and sin( 3t). For the repeated pair, we
get t cos( 3t) and t sin( 3t). The general solution is
√ √ √ √
y = c1 cos( 3t) + c2 sin( 3t) + c3 t cos( 3t) + c4 t sin( 3t)
where c1 , c2 , c3 , c4 ∈ R.