Internal
problem
ID
[18444]
Book
:
Elementary
Differential
Equations.
By
R.L.E.
Schwarzenberger.
Chapman
and
Hall.
London.
First
Edition
(1969)
Section
:
Chapter
4.
Autonomous
systems.
Exercises
at
page
69
Problem
number
:
2
Date
solved
:
Monday, March 31, 2025 at 05:29:29 PM
CAS
classification
:
system_of_ODEs
In this method, we will assume we have found the matrix exponential
Or
For the above matrix
Therefore the homogeneous solution is
Since no forcing function is given, then the final solution is
This is a system of linear ODE’s given as
Or
The first step is find the homogeneous solution. We start by finding the eigenvalues of
Expanding gives
Therefore
Since the matrix
The roots of the above are the eigenvalues.
This table summarises the above result
eigenvalue | algebraic multiplicity | type of eigenvalue |
| | real eigenvalue |
| | real eigenvalue |
Now the eigenvector for each eigenvalue are found.
Considering the eigenvalue
We need to solve
Now forward elimination is applied to solve for the eigenvector
Since the current pivot
Therefore the system in Echelon form is
The free variables are
Hence the solution is
Since there is one free Variable, we have found one eigenvector associated with this eigenvalue. The above can be written as
Let
Considering the eigenvalue
We need to solve
Now forward elimination is applied to solve for the eigenvector
Therefore the system in Echelon form is
The free variables are
Hence the solution is
Since there is one free Variable, we have found one eigenvector associated with this eigenvalue. The above can be written as
Let
The following table gives a summary of this result. It shows for each eigenvalue the algebraic multiplicity
multiplicity
| ||||
eigenvalue | algebraic | geometric | defective? | eigenvectors |
| | | No | |
|
|
|
No | |
Now that we found the eigenvalues and associated eigenvectors, we will go over each eigenvalue and generate the solution basis. The only problem we need to take care of is if the eigenvalue is defective. Since eigenvalue
Since eigenvalue
Therefore the final solution is
Which is written as
Which becomes
ode:=[diff(x(t),t) = x(t), diff(y(t),t) = x(t)+2*y(t)]; dsolve(ode);
Maple step by step
ode={D[x[t],t]==x[t],D[y[t],t]==x[t]+2*y[t]}; ic={}; DSolve[{ode,ic},{x[t],y[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") y = Function("y") ode=[Eq(-x(t) + Derivative(x(t), t),0),Eq(-x(t) - 2*y(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)