Linear Algebra/Characteristic Equation

From testwiki
Revision as of 10:49, 13 July 2009 by imported>Thenub314 (categorizing.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The matrix definition of an eigen value is very useful since it allows us to find eigen values for a given matrix using the following theorem:

λ is an eigen value of A iff det(AλInv)=0.

Proof:

If Av=λv then

Av=λInv

AvλInv=0

(AλIn)v=0

but since v is non-zero we know that (AλIn) is singular, ie it's determinant is zero so an eigen value of A will satisfy the equation

det(AλInv)=0.

which is known as the characteristic equation. (haven't proved the converse, but this is not required when calculating eigenvalues).

In the case A is a 2x2 matrix, this equation leads to the characteristic polynomial :

det([a11a12a21a22]λ[1001])=0
det([a11a12a21a22][λ00λ])=0
det[a11λa12a21a22λ]=0
(a11λ)(a22λ)a21a12=0
λ2(a11+a22)λ+a11a22a12a21=0

This is simply a quadratic equation and the roots of this are the eigen values of A

In order to find the corresponding eigen vectors, we simply solve the equation Av=λv which will be two simultaneous equations. There will in fact be infinitely many solutions to this equation since any scalar multiple of an eigen vector is also an eigen vector.

Template:BookCat