Skip to main content
Logo image

Section 5.1 Eigen Vector

Goals.

We will
  • consider vectors with special properties with respect to a matrix,
  • develop a method for finding these vectors, and
  • discover a property of the set of these vectors.
We have considered matrices as transformations: they map vectors to new vectors. We are looking for vectors whose direction is not changed.

Subsection 5.1.1 Motivation

Guido is sailing with intended velocity x. The effect of the wind on him is given by Ax. Find directions (x) Guido can sail so that the wind is either directly at his back (helping him), or directly in his face (suggesting he turn around).
A=[4239].
We want to solve the following equation.
Ax=λx
Because the vector is the same on both sides and λ is just a scalar, this equation says that the matrix does not change the direction of the vector. Note in this illustration λ indicates the magnitude of help; it is positive for a tailwind or negative for a headwind.
Solutions for A are [1,3]T and [2,1]T. Note
[4239][13]=[1030]=10[13].
Also
[4239][21]=[63]=3[21]
Note because scale does not matter if x is a solution then so is cx. If T is the linear transformation with matrix A these are vectors that are mapped onto the same line. View the results in the following images. For example [6,3]T also works.
If we apply this transformation to an image, points on these two vectors will be stretched but not rotated while the rest may also rotate.
Original image
Transformed image
Figure 5.1.1. Illustration of limited effect of transformation on its eigenvectors

Definition 5.1.2. Eigenvectors and Eigenvalues.

A vector x is an \textit{eigenvector} of a matrix M if and only if Ax=λx for some number λ called the corresponding eigenvalue.

Subsection 5.1.2 Method

First note the following, algebraic re-arrangement of the eigenvector definition.
Ax=λx.Axλx=0.(AλI)x=0.

Activity 5.1.1.

Remember the eigenvectors of A are the solutions to (AλI)x=0.
(a)
The set of all such x is what with respect to the matrix AλI?
(b)
Given we want the non-trivial solutions to (AλI)x=0 what are we supposing is true of AλI?
(c)
Using the previous conclusion what do we know about det(AλI)?

Checkpoint 5.1.3.

Find the eigenvalues and eigenvectors for B=[5021].

Definition 5.1.4. Characteristic Equation.

The polynomial in λ, det(AλI), is called the characteristic equation of A.

Subsection 5.1.3 Independence of Eigenvectors

Next we consider the set of eigenvectors and ask if it will be independent.

Activity 5.1.2.

Consider eigenvectors v1,v2,,vn that correspond to distinct eigenvalues λ1,λ2,,λn.
Suppose vp+1 is dependent on the independent eigenvectors v1,,vp.
(a)
Write c1v1+c2v2++cn1vp=vp+1.
(b)
Multiply this equation by A and simplify remembering the definition of eigenvectors.
(c)
Again write c1v1+c2v2++cn1vp=vp+1.
(d)
Multiply this copy by λp+1.
(e)
Subtract the two equations you generated.
(f)
Remembering that v1,,vp are independent, what does the resulting equation imply?