Topic 7 Linear systems
Given a linear system of first order differential equation with constant coefficients the general solution is in the form where
It it known that for a matrix , there is a matrix consists of eigenvectors and generalized eigenvectors such that is in the form where are the Jordan blocks.
For a matrix , if it has two distinct eigenvalues and , then where and are eigenvectors associated to and respectively, and .
If it has a repeated eigenvalue , let be a eigenvector and a generalized eigenvector such that , then where .
So to solve a linear system of first-order differential equations, we need to find eigenvalues and associated eigenvectors or generalized eigenvectors.
7.1 Eigenvalues and Eigenvectors
In Maple, eigenvalues, eigenvectors can be found using the command Eigenvectors
which is supported by the package LinearAlgebra
.
To construct a matrix or vector in Maple, one can use the Matrix()
or Vector()
command, or the shortcut notation <...>
.
Example 7.1 Find the eigenvalues and associated generalized eigenvectors of the matrix
Solution. Define the matrix using the shortcut notation.
A:=< <-1, -3> | <3, 5> > # or A:=Matrix(2,2, [-1,3,-3,5])
Load the package LinearAlgebra
.
with(LinearAlgebra)
Find eigenvalues and eigenvectors of .
Eigen:=Eigenvectors(A)
The output is
From the output, we see that is a repeated eigenvalue. The first colum in the square matrix is an eigenvector of the eigenvalue. Since the eigenvalue is repeated, there will be a generalized eigenvector. The following Maple codes shows how to find it.
IdM:=IdentityMatrix(2): # define a 2-by-2 identity matrix
u:=Column(Eigen[2],1): # extract the eigenvector
v:=LinearSolve(A-2*IdM, u); # solve for a generalized eigenvector
The output shows where is a free variable that can take any value. For example, taking and then multiply it by 3 yields an eigenvector
Exercise 7.1 Find the eigenvalues and associated eigenvectors of the matrix
7.2 Solving Linear System of ODE
In Maple, to solve a linear system of first-order differential equations, one can use the command dsolve
. Note that in Maple, the matrix multiplication operator is the .
symbol instead of the *
symbol. The *
symbol is to be used for scalar multiplication.
Example 7.2 Solve the linear system
Solution. Define the linear system in matrix form.
M := Matrix(2, 2, [-1, 3, -3, 5]):
Y := <y[1](x), y[2](x)>:
LinSys := diff(Y, x) = M . Y;
Solve the linear system
dsolve(LinSys, Y);
The output shows the general solution as
Exercise 7.2 Solve the linear system