Eigen Vector
Eigen Vector
This page is a brief introduction to eigenvalue/eigenvector problems (don't worry if you haven't
heard of the latter). Before reading this you should feel comfortable with basic matrix
operations. If you are confident in your ability with this material, feel free to skip it.
Note that there is no description of how the operations are done -- it is assumed that you are
using a calculator that can handle matrices, or a program like MatLab. Also, this page typically
only deals with the most general cases, there are likely to be special cases (for example, nonunique eigenvalues) that aren't covered at all.
If
In either case we find that the first eigenvector is any 2 element column vector in which the two
elements have equal magnitude and opposite sign.
where k1 is an arbitrary constant. Note that we didn't have to use +1 and -1, we could have used
any two quantities of equal magnitude and opposite sign.
Going through the same procedure for the second eigenvalue:
Again, the choice of +1 and -2 for the eigenvector was arbitrary; only their ratio is important.
This is demonstrated in the MatLab code below.
Using MatLab
>> A=[0 1;-2 -3]
A =
0
1
-2 -3
>> [v,d]=eig(A)
v =
0.7071 -0.4472
-0.7071
0.8944
d =
-1
0
0
-2
Note that MatLab chose different values for the eigenvectors than the ones we chose. However,
the ratio of v1,1 to v1,2 and the ratio of v2,1 to v2,2 are the same as our solution; the chosen
eigenvectors of a system are not unique, but the ratio of their elements is. (MatLab chooses the
values such that the sum of the squares of the elements of each eigenvector equals unity).