31. Eigenvectors and eigenvalues

31. Eigenvectors and eigenvalues

Eigenvectors and eigenvalues

Given a complicated matrix, it can be difficult to determine salient information just by looking at the array of numbers. For example, the matrix: M = ( 1 3 1 3 + 1 3 - 1 3 + 1 3 1 3 - 1 3 1 3 - 1 3 - 1 3 - 1 3 - 1 3 - 1 3 + 1 3 1 3 ) describes a 90 degree rotation around ( 1 1 - 1 ) , but you wouldn't know it just by looking at it.

We saw that, if you have a rotation matrix, then, to determine the axis of rotation, you just need to solve M v = v for v . We now introduce a generalisation of this equation.

Definition:

Suppose M is an n -by- n matrix, v 𝐂 n is a complex vector and λ 𝐂 is a complex number. If M v = λ v then we say that v is an eigenvector of M with eigenvalue λ .

Remark:

We'll usually require v 0 : this is because v = 0 is always a solution to M v = λ v , so we don't really care about it (it tells us nothing interesting about M ). We'll often abbreviate "eigenvector" to "evec" and "eigenvalue" to "eval". The prefix "eigen-" comes from German, and means "self": v is sent to itself by A , up to a scale factor λ . You can use the prefix to construct many fun words, including eigenline (line of eigenvectors), eigendirection (direction in which eigenvector points), eigenspace (space consisting of eigenvectors for some particular eigenvalue), eigenfunctions (for example, e λ x is an eigenfunction of d / d x because d ( e λ x ) / d x = λ e λ x .

It's hard to overemphasise the importance of eigenvalues and eigenvectors in mathematics and its applications. For example, in quantum mechanics, Schrödinger's equation is really just the statement that, if you have a quantum system, then the possible values that energy can take on are the eigenvalues of an operator called the Hamiltonian. This allows you predict the absorption/emission spectrum of hydrogen to great accuracy, which is one of the reasons people were so convinced by quantum mechanics early on. We'll focus on applications within mathematics, but this eigenstuff we're doing is really central in maths and in science.

The eigenvector equation

For each λ , M v = λ v is an equation for v : you fix an eigenvalue and you look for eigenvectors associated to that eigenvalue. You always find the solution v = 0 , but very rarely do you find anything else. The λ s for which M v = λ v has a nonzero solution are called the eigenvalues of M . Not every number occurs as an eigenvalue of M . In the next video we'll see how to figure out which numbers are eigenvalues for a given matrix.

In this video, we'll answer the question: if someone gives you an eigenvalue of M , how do you find the eigenvectors?

Example:

If someone gives you M = ( 2 - 1 1 0 ) and tells you that λ = 1 is an eigenvalue of M , you can find the eigenvectors by solving M v = λ v = v : M v = ( 2 - 1 1 0 ) ( x y ) = ( 2 x - y x ) , so M v = v implies 2 x - y = x and x = y . The second equation x = y implies the first, so the eigenvectors are just the vectors of the form ( x x ) .

All we did here was to solve a system of simultaneous equations for v . So if someone gives you λ , finding v is something we know how to do. If we write this system in matrix form, we get ( M - λ I ) v = 0 (i.e. the constants are all zero, not λ v ).

What would happen if I picked something other than λ = 1 ?

Example:

If I keep the same M , pick λ = 2 and try to solve M v = 2 v for v , I get: 2 x - y = 2 x , x = 2 y , which implies y = 0 and x = 2 y = 0 , so v = 0 . This means that 2 is not an eigenvalue of M .

Currently we're just guessing λ , and there are infinitely many possible λ s, so we need a better way of figuring out which λ s are eigenvalues of M . That's what we'll do in the next video.