Computation of Eigenvectors

Let A be a square matrix of order n and $\lambda$ one of its eigenvalues. Let X be an eigenvector of A associated to $\lambda$. We must have

\begin{displaymath}A X = \lambda X\;\;\mbox{or}\;\;\; \Big(A - \lambda I_n \Big) X = 0.\end{displaymath}

This is a linear system for which the matrix coefficient is $A - \lambda I_n$. Since the zero-vector is a solution, the system is consistent. In fact, we will in a different page that the structure of the solution set of this system is very rich. In this page, we will basically discuss how to find the solutions.

Remark. It is quite easy to notice that if X is a vector which satisfies $AX = \lambda X$, then the vector Y = c X (for any arbitrary number c) satisfies the same equation, i.e. $AY = \lambda Y$. In other words, if we know that X is an eigenvector, then cX is also an eigenvector associated to the same eigenvalue.

Let us start with an example.

Example. Consider the matrix

\begin{displaymath}A = \left(\begin{array}{rrr}
1&2&1\\
6&-1&0\\
-1&-2&-1\\
\end{array}\right).\end{displaymath}

First we look for the eigenvalues of A. These are given by the characteristic equation $\det(A - \lambda I_3) = 0$, i.e.

\begin{displaymath}\left\vert\begin{array}{ccc}
1- \lambda &2&1\\
6&-1- \lambda &0\\
-1&-2&-1- \lambda \\
\end{array}\right\vert = 0.\end{displaymath}

If we develop this determinant using the third column, we obtain

\begin{displaymath}\left\vert\begin{array}{ccc}
6&-1- \lambda \\
-1&-2 \\
\end...
...
1- \lambda &2\\
6&-1- \lambda \\
\end{array}\right\vert = 0.\end{displaymath}

Using easy algebraic manipulations, we get

\begin{displaymath}-\lambda (\lambda +4)(\lambda -3) = 0\end{displaymath}

which implies that the eigenvalues of A are 0, -4, and 3.
Next we look for the eigenvectors.
1.
Case $\lambda = 0$: The associated eigenvectors are given by the linear system

\begin{displaymath}A X = {\cal O}\end{displaymath}

which may be rewritten by

\begin{displaymath}\left\{\begin{array}{ccc}
x + 2y + z &=& 0\\
6x-y &=& 0\\
-x-2y-z &=& 0
\end{array}\right.\end{displaymath}

Many ways may be used to solve this system. The third equation is identical to the first. Since, from the second equations, we have y = 6x, the first equation reduces to 13x + z = 0. So this system is equivalent to

\begin{displaymath}\left\{\begin{array}{ccc}
y &=&6x\\
z &=& -13x\\
\end{array}\right.\end{displaymath}

So the unknown vector X is given by

\begin{displaymath}X = \left(\begin{array}{rrr}
x\\
y\\
z\\
\end{array}\right...
... \left(\begin{array}{rrr}
1\\
6\\
-13 \\
\end{array}\right).\end{displaymath}

Therefore, any eigenvector X of A associated to the eigenvalue 0 is given by

\begin{displaymath}X = c \left(\begin{array}{rrr}
1\\
6\\
-13 \\
\end{array}\right),\end{displaymath}

where c is an arbitrary number.

2.
Case $\lambda = -4$: The associated eigenvectors are given by the linear system

\begin{displaymath}A X = -4 X\;\;\mbox{\bf or}\;\; \Big(A + 4I_3) X = {\cal O}\end{displaymath}

which may be rewritten by

\begin{displaymath}\left\{\begin{array}{ccc}
5x + 2y + z &=& 0\\
6x+3y &=& 0\\
-x-2y+3z &=& 0
\end{array}\right.\end{displaymath}

In this case, we will use elementary operations to solve it. First we consider the augmented matrix $[A+4I_3\vert{\cal O}]$, i.e.

\begin{displaymath}\left(\begin{array}{rrr\vert r}
5&2&1&0\\
6&3&0&0\\
-1&-2&3&0\\
\end{array}\right).\end{displaymath}

Then we use elementary row operations to reduce it to a upper-triangular form. First we interchange the first row with the first one to get

\begin{displaymath}\left(\begin{array}{rrr\vert r}
-1&-2&3&0\\
5&2&1&0\\
6&3&0&0\\
\end{array}\right).\end{displaymath}

Next, we use the first row to eliminate the 5 and 6 on the first column. We obtain

\begin{displaymath}\left(\begin{array}{rrr\vert r}
-1&-2&3&0\\
0&-8&16&0\\
0&-9&18&0\\
\end{array}\right).\end{displaymath}

If we cancel the 8 and 9 from the second and third row, we obtain

\begin{displaymath}\left(\begin{array}{rrr\vert r}
-1&-2&3&0\\
0&-1&2&0\\
0&-1&2&0\\
\end{array}\right).\end{displaymath}

Finally, we subtract the second row from the third to get

\begin{displaymath}\left(\begin{array}{rrr\vert r}
-1&-2&3&0\\
0&-1&2&0\\
0&0&0&0\\
\end{array}\right).\end{displaymath}

Next, we set z = c. From the second row, we get y = 2z = 2c. The first row will imply x = -2y+3z = -c. Hence

\begin{displaymath}X = \left(\begin{array}{rrr}
x\\
y\\
z\\
\end{array}\right...
...c \left(\begin{array}{rrr}
-1\\
2\\
1 \\
\end{array}\right).\end{displaymath}

Therefore, any eigenvector X of A associated to the eigenvalue -4 is given by

\begin{displaymath}X = c \left(\begin{array}{rrr}
-1\\
2\\
1 \\
\end{array}\right),\end{displaymath}

where c is an arbitrary number.

2.
Case $\lambda = 3$: The details for this case will be left to the reader. Using similar ideas as the one described above, one may easily show that any eigenvector X of A associated to the eigenvalue 3 is given by

\begin{displaymath}X = c \left(\begin{array}{rrr}
2\\
3\\
-2\\
\end{array}\right),\end{displaymath}

where c is an arbitrary number.

Remark. In general, the eigenvalues of a matrix are not all distinct from each other (see the page on the eigenvalues for more details). In the next two examples, we discuss this problem.

Example. Consider the matrix

\begin{displaymath}A = \left(\begin{array}{rrr}
3&2&4\\
2&0&2\\
4&2&3\\
\end{array}\right).\end{displaymath}

The characteristic equation of A is given by

\begin{displaymath}\left\vert\begin{array}{rrr}
3 - \lambda &2&4\\
2&0 - \lambd...
... 1)(\lambda + 1)(\lambda -8) = -(\lambda + 1)^2(\lambda -8) =0.\end{displaymath}

Hence the eigenvalues of A are -1 and 8. For the eigenvalue 8, it is easy to show that any eigenvector X is given by

\begin{displaymath}X = c \left(\begin{array}{rrr}
2\\
1\\
2\\
\end{array}\right),\end{displaymath}

where c is an arbitrary number. Let us focus on the eigenvalue -1. The associated eigenvectors are given by the linear system

\begin{displaymath}A X = (-1) X\;\;\mbox{\bf or}\;\; \Big(A + I_3) X = {\cal O}\end{displaymath}

which may be rewritten by

\begin{displaymath}\left\{\begin{array}{ccc}
4x + 2y + 4z &=& 0\\
2x+y + 2z&=& 0\\
4x+2y+4z &=& 0
\end{array}\right.\end{displaymath}

Clearly, the third equation is identical to the first one which is also a multiple of the second equation. In other words, this system is equivalent to the system reduced to one equation

2x+y + 2z= 0.

To solve it, we need to fix two of the unknowns and deduce the third one. For example, if we set $x = \alpha$ and $z= \beta$, we obtain $y = -2\alpha - 2 \beta$. Therefore, any eigenvector X of A associated to the eigenvalue -1 is given by

\begin{displaymath}X = \left(\begin{array}{rrr}
x\\
y\\
z\\
\end{array}\right...
...eta\left(\begin{array}{rrr}
0\\
-2\\
1\\
\end{array}\right).\end{displaymath}

In other words, any eigenvector X of A associated to the eigenvalue -1 is a linear combination of the two eigenvectors

\begin{displaymath}\left(\begin{array}{rrr}
1\\
-2\\
0\\
\end{array}\right) \...
...;\;\left(\begin{array}{rrr}
0\\
-2\\
1\\
\end{array}\right).\end{displaymath}

Example. Consider the matrix

\begin{displaymath}\left(\begin{array}{rrr}
1&-4\\
4&-7\\
\end{array}\right).\end{displaymath}

The characteristic equation is given by

\begin{displaymath}\left\vert\begin{array}{cc}
1-\lambda&-4\\
4&-7-\lambda\\
\end{array}\right\vert = (\lambda + 3)^2 = 0.\end{displaymath}

Hence the matrix A has one eigenvalue, i.e. -3. Let us find the associated eigenvectors. These are given by the linear system

\begin{displaymath}A X = (-3) X\;\;\mbox{\bf or}\;\; \Big(A + 3 I_2) X = {\cal O}\end{displaymath}

which may be rewritten by

\begin{displaymath}\left\{\begin{array}{ccc}
4x -4 y &=& 0\\
4x -4 y &=& 0\\
\end{array}\right.\end{displaymath}

This system is equivalent to the one equation-system

x - y = 0.

So if we set x = c, then any eigenvector X of A associated to the eigenvalue -3 is given by

\begin{displaymath}X = \left(\begin{array}{rrr}
x\\
y\\
\end{array}\right) = c \left(\begin{array}{rrr}
1\\
1\\
\end{array}\right).\end{displaymath}







Let us summarize what we did in the above examples.

Summary: Let A be a square matrix. Assume $\lambda$ is an eigenvalue of A. In order to find the associated eigenvectors, we do the following steps:

1.
Write down the associated linear system

\begin{displaymath}A X = \lambda X\;\;\mbox{\bf or}\;\; \Big(A + \lambda I_n\Big) X = {\cal O}.\end{displaymath}

2.
Solve the system.
3.
Rewrite the unknown vector X as a linear combination of known vectors.

The above examples assume that the eigenvalue $\lambda$ is real number. So one may wonder whether any eigenvalue is always real. In general, this is not the case except for symmetric matrices. The proof of this is very complicated. For square matrices of order 2, the proof is quite easy. Let us give it here for the sake of being little complete.
Consider the symmetric square matrix

\begin{displaymath}A = \left(\begin{array}{rrr}
a&b\\
b&c\\
\end{array}\right).\end{displaymath}

Its characteristic equation is given by

\begin{displaymath}\det(A - \lambda I_2) = \left\vert\begin{array}{cc}
a - \lamb...
...end{array}\right\vert = \lambda^2 - (a+c) \lambda + ac-b^2 = 0.\end{displaymath}

This is a quadratic equation. The nature of its roots (which are the eigenvalues of A) depends on the sign of the discriminant

\begin{displaymath}\Delta = (a+c)^2 - 4 (ac-b^2).\end{displaymath}

Using algebraic manipulations, we get

\begin{displaymath}\Delta = (a-c)^2 + 4 b^2.\end{displaymath}

Therefore, $\Delta$ is a positive number which implies that the eigenvalues of A are real numbers.

Remark. Note that the matrix A will have one eigenvalue, i.e. one double root, if and only if $\Delta = 0$. But this is possible only if a=c and b=0. In other words, we have

A = a I2.

In the next page, we will discuss the case of complex eigenvalues.

[Geometry] [Algebra] [Trigonometry ]
[Calculus] [Differential Equations] [Matrix Algebra]

S.O.S MATH: Home Page

Do you need more help? Please post your question on our S.O.S. Mathematics CyberBoard.

Author: M.A. Khamsi

Copyright © 1999-2024 MathMedics, LLC. All rights reserved.
Contact us
Math Medics, LLC. - P.O. Box 12395 - El Paso TX 79913 - USA
users online during the last hour