Lesson 30 - Matrix Methods for Linear Homogeneous Systems

Definition: Let A=[aij]n×n be a constant matrix. The eigenvalues of A are values of λ that satisfy (AλI)v=0. The corresponding nontrivial solutions, v are called eigenvectors of A associated with λ.

Theorem: Suppose, A, then n×n constant matrix has n linearly independent eigenvectors v1,v2,,vn. If λi are the corresponding eigenvalues (for i=1,2,,n), then the set
{v1eλ1t,v2eλ2t,,vneλnt } forms a fundamental set of solutions of the equations x(t)=Ax(t).

The general solution is

x(t)=c1v1eλ1t+c2v2eλ2t++cnvneλnt

What does this all mean?

An eigenvalue is a special value that helps us understand how a matrix behaves when it acts on a vector. An eigenvector is a collection of those eigenvalues. These values are specific to the matrix that we are working with. They allow us to stretch or shrink the matrix without affecting the direction of the vector components.

For any matrix, we can find these special vectors and their corresponding values.

For differential equations, we deal with equations that change over time. These eigenvalues and eigenvectors help us solve these equations more easily. Let's take a look at an example.

Example

For the DE: x(t)=Ax(t) where A=|2312|.

a) Find the eigenvalues λ and the corresponding eigenvectors.
b) Write the general solution.

In order to find the eigenvalues, we take the determinant of AλI, where I is the identity matrix |1001|. We find that λI is a scalar-matrix multiplication, where we multiply each component of the matrix I by the value λ. This gives us λI=|λ00λ|

First, let's calculate AλI.

AλI=|2312||λ00λ|=|2λ312λ|

Now, we find the determinant of the matrix. This is essentially the cross product of the matrix. So,

det|2λ312λ|=0(2λ)(2λ)(3)(1)=04+λ2+3=0λ2+1=0λ=±1

These are the eigenvalues of the matrix A.

To find the eigenvectors, we have (AλI)v=0, let v=|v1v2|.
For λ=1, we have

|1313||v1v2|=0

This comes from plugging in λ=1 into the matrix that we found above for AλI. Now, we have a linear system of equation in the form of vector-matrix multiplication. Let's convert this to notation that will allow us to solve for v1 and v2.

v13v2=0v13v2=0

If we simply let v2=s, we can solve for v1. v1=3s.

So now, we have an eigenvector

v=|3ss|=s|31|

Let's do the same for λ=1.

|3311||v1v2|=03v13v2=0v1v2=0

Again, v1=s. Therefore, v2=s. So our eigenvector is

v=|ss|=s|11|

So now, our solution is

x(t)=c1|31|et+c2|11|et

Table of Contents: Table of Contents

Back to Overview

Welcome Page