Topic 7 Linear systems

Given a linear system of first order differential equation with constant coefficients y=Ay, the general solution is in the form y=eAtc, where eAt=n=0Antnn!.

It it known that for a matrix A, there is a matrix P consists of eigenvectors and generalized eigenvectors such that PAP1 is in the form (J1Jr), where Jk are the Jordan blocks.

For a 2×2 matrix A, if it has two distinct eigenvalues λ1 and λ2, then eAt=(eλ1tueλ1tv)P1, where u and v are eigenvectors associated to λ1 and λ2 respectively, and P=(uv).

If it has a repeated eigenvalue λ, let u be a eigenvector and v a generalized eigenvector such that (AλI)v=u, then eAt=(eλtuteλtu+eλtv)P1, where P=(uv).

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 A:=(1335)

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 A.

Eigen:=Eigenvectors(A)

The output is [22],[1010].

From the output, we see that 1 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 [13+_t2_t2], where _t2 is a free variable that can take any value. For example, taking _t2=13 and then multiply it by 3 yields an eigenvector (01).

Exercise 7.1 Find the eigenvalues and associated eigenvectors of the matrix A:=(5364)

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 (y1y2)=(1335)(y1y2).

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

(y1(xy2(x))=(e2x(3_C2x+3_C1_C2)3e2x(_C2x+_C1)).

Exercise 7.2 Solve the linear system (y1y2)=(5342)(y1y2).