dudely

Eigenvalues and Eigenvectors, Made Intuitive

Updated 2026-07-12

For a square matrix A, an eigenvector is a nonzero vector whose direction does not change when A is applied to it, it only gets scaled. The scaling factor is its eigenvalue. They satisfy A times v equals lambda times v, where lambda is the eigenvalue.

Eigenvectors are the special directions a matrix does not rotate, it only stretches or shrinks them. The amount of that stretch is the eigenvalue. Once you see it geometrically, the algebra of finding them makes sense.

The defining idea

Most vectors get knocked off their line when you multiply by a matrix. Eigenvectors are the exceptions: they stay on their own line, just scaled by the eigenvalue. That is what A v = lambda v says.

How to find them

Solve the characteristic equation, the determinant of (A minus lambda times the identity) set equal to zero. Its solutions are the eigenvalues. Plug each one back in to find the eigenvector that goes with it.

Worked example

Find the eigenvalues of the matrix A = [[2, 1], [0, 3]].

  1. Form A minus lambda I: [[2 - lambda, 1], [0, 3 - lambda]].
  2. Take the determinant: (2 - lambda)(3 - lambda) - (1)(0).
  3. Set it to zero: (2 - lambda)(3 - lambda) = 0.

Answer: The eigenvalues are lambda = 2 and lambda = 3.

The common mistake

Wrong: Accepting the zero vector as an eigenvector.

Fix: An eigenvector must be nonzero by definition. The zero vector satisfies A v = lambda v for any lambda, so it carries no information and is excluded.

Learn Eigenvalues and eigenvectors live, not just read about it

Dudely builds this exact concept on a whiteboard, explains every step, and checks you understand before moving on.

Learn it live, free

Related concepts

Frequently asked questions

What is an eigenvector in simple terms?

It is a special vector that a matrix does not change the direction of, only its length. The factor by which the length changes is the eigenvalue.

How do you find eigenvalues?

Solve the characteristic equation: set the determinant of (A minus lambda times the identity matrix) equal to zero, and solve for lambda.