MATH 323 Lecture 25

From Notes
Jump to navigation Jump to search

« previous | Thursday, November 29, 2012 | next »


Eigenvalues and Eigenvectors

Example

A=[231121132]

p(λ)=|2λ3112λ1132λ|=λ(λ1)2

Therefore, the eigenvalues are λ1=0, λ2=λ3=1


To find eigenvectors, find basis for N(AλI):

  1. N(A0I)=N(A)=α,α,αα
  2. N(A1I)=3αβ,α,β


Therefore, 1,1,1 is an eigenvector belonging to λ1=0, and 3,1,0 and 1,0,1 are linearly independent eigenvectors belonging to λ2=λ3=1.

Complex Eigenvalues

For an arbitrary n×n matrix, the characteristic polynomial will be (1)nλn+Θ(λn1).

Polynomials of degree n always have exactly n complex roots:

p(λ)=(a11λ)(annλ)+=(1)n(λλ1)(λλn)+Θ(λn1)=(λ1λ)(λnλ)+Θ(λn1)


p(0)=i=1nλi is the constant term of p(λ).

The coefficient of the remaining λn1 is given by (1)n1i=1naii. This is called the trace of A.

Example

A=[1221]

λ1=1+2iλ2=12i

(Aλ1I)x=0[1i00]

Therefore, i,1 is an eigenvector belonging to λ1=1+2i. If we multiply this eigenvector by i, we get 1,i, which is a much nicer form.

Theorem 6.1.1

Let A and B be n×n matrices.

If B is similar to A, then A and B have the same characteristic polynomials and the same eigenvalues (not eigenvectors).

Proof

Recall that ABB=S1AS

pB(λ)=|BλI|=|S1ASλI|=|S1(AλI)S|=|S1||AλI||S|=|AλI|=pA(λ)

Review: Complex Numbers

Every complex number z=a+bi has a conjugate z¯=abi.

A polynomial that has a root z=a+bi will also have the conjugate as a root

corollary: if λ=a+bi is an eigenvalue of a real matrix A, then λ¯=abi is also an eigenvalue.
if z=a+bi is an eigenvector of complex eigenvalue λ1, then z¯=abi is an eigenvector of the conjugate eigenvalue λ¯1.

multiplying a complex by its conjugate will always yield a real number

Conjugate of a Product of complex numbers is just the product of conjugates


Solving Systems of Linear Differential Equations

A linear differential equation is of the form

y1=a11y1+a1nyny2=a21y1+a2nynyn=an1y1+annyn

Where yi are functions in C1[a,b].

Which can be written in the form Y=AY.


Suppose Y(t) is of the form x1eλt,x2eλt,,xneλt.

Then Y(t)=eλtx and Y(t)=λY(t)=λeλtx.

If x is an eigenvector of A, then AY=Aeλtx=eλtAx=eλtλx


The set of solutions to Y=AY is an n-dimensional subspace, and if solutions Y1,,Yn are linearly independent solutions, then any linear combination of Yi's are also solutions.

Example

y1=3y1+4y2y2=3y1+2y2

A=[3432]

λ1=6,λ2=1

x1=4,3x2=1,1Y1(t)=e6t4,3Y2(t)=et1,1Y=c1Y1(t)+c2Y2(t)=[4c1e6t+c2et3c1e6tc2et]


For initial value problem Y(0)=6,1, c1=1 and c2=2.