Eigenvalues and eigenvectors tell you which directions a square matrix only scales instead of turning. For a square matrix AA, an eigenvector is a nonzero vector vv such that

Av=λvAv = \lambda v

for some scalar λ\lambda. The number λ\lambda is the eigenvalue: eigenvectors keep their line, while eigenvalues tell you the scale factor on that line.

When this method applies

Use the eigenvalue procedure on a square matrix whenever you want the special directions that survive a transformation without turning away from their original line. Think of a matrix as a transformation that usually rotates, shears, stretches, or mixes directions. An eigenvector does not turn; it may get stretched, shrunk, or reversed if λ<0\lambda < 0, but it stays on the same line. The eigenvalue tells you what happens along that direction:

  • If λ>1\lambda > 1, the vector is stretched.
  • If 0<λ<10 < \lambda < 1, the vector is shrunk.
  • If λ<0\lambda < 0, the vector is scaled and reversed.
  • If λ=0\lambda = 0, the matrix sends that eigenvector to the zero vector.

The zero vector is never counted as an eigenvector. If it were allowed, every matrix would have it, and the idea would lose its meaning. This method applies to square matrices; if the matrix is not square, the standard eigenvalue problem is not defined in this form.

The procedure, step by step

  1. Set up the equation. Start from Av=λvAv = \lambda v and move everything to one side so you get (AλI)v=0(A - \lambda I)v = 0.
  2. Find the eigenvalues. For a nonzero solution vv, the matrix AλIA - \lambda I must be singular, so solve det(AλI)=0\det(A - \lambda I) = 0 to find the allowed values of λ\lambda.
  3. Find each eigenvector. Plug one eigenvalue back into (AλI)v=0(A - \lambda I)v = 0 and solve for nonzero vectors.
  4. Check the pair. Verify that multiplying AA by your vector really gives λv\lambda v.

A full example: a 2x2 matrix

Let

A=[2103].A = \begin{bmatrix} 2 & 1 \\ 0 & 3 \end{bmatrix}.

Step 1 and 2: compute det(AλI)\det(A - \lambda I)

First form

AλI=[2λ103λ],A - \lambda I = \begin{bmatrix} 2 - \lambda & 1 \\ 0 & 3 - \lambda \end{bmatrix},

so

det(AλI)=(2λ)(3λ).\det(A - \lambda I) = (2 - \lambda)(3 - \lambda).

Setting this equal to zero gives the eigenvalues λ=2\lambda = 2 and λ=3\lambda = 3.

Step 3: eigenvectors for λ=2\lambda = 2

Substitute λ=2\lambda = 2:

A2I=[0101].A - 2I = \begin{bmatrix} 0 & 1 \\ 0 & 1 \end{bmatrix}.

With v=[xy]v = \begin{bmatrix} x \\ y \end{bmatrix}, the system gives y=0y = 0. The variable xx is free, so every nonzero vector on the xx-axis works. A simple choice is

[10]\begin{bmatrix} 1 \\ 0 \end{bmatrix}

and any nonzero multiple of it is also an eigenvector for λ=2\lambda = 2.

Step 3 again: eigenvectors for λ=3\lambda = 3

Now use λ=3\lambda = 3:

A3I=[1100].A - 3I = \begin{bmatrix} -1 & 1 \\ 0 & 0 \end{bmatrix}.

This gives x+y=0-x + y = 0, so y=xy = x. A simple choice is

[11]\begin{bmatrix} 1 \\ 1 \end{bmatrix}

and any nonzero multiple of it is also an eigenvector for λ=3\lambda = 3.

Step 4: check one pair

Take v=[11]v = \begin{bmatrix} 1 \\ 1 \end{bmatrix} for λ=3\lambda = 3:

Av=[2103][11]=[33]=3[11].Av = \begin{bmatrix} 2 & 1 \\ 0 & 3 \end{bmatrix} \begin{bmatrix} 1 \\ 1 \end{bmatrix} = \begin{bmatrix} 3 \\ 3 \end{bmatrix} = 3 \begin{bmatrix} 1 \\ 1 \end{bmatrix}.

So the check works: Av=3vAv = 3v. Geometrically, if you picture the plane being transformed by AA, most arrows tilt into new directions, and eigenvectors are the rare arrows that stay on their own line. That is why they matter: they reveal the simple directions hidden inside the transformation.

Where students get stuck, and how to check each step

  1. Forgetting that eigenvectors must be nonzero.
  2. Solving det(AλI)=0\det(A - \lambda I) = 0 incorrectly, especially the determinant step.
  3. Finding the eigenvalues but not solving for the corresponding eigenvectors.
  4. Assuming every square matrix has enough independent eigenvectors to form a basis. Some do not.
  5. Assuming every real matrix has real eigenvalues. That depends on the matrix.

The Step 4 check is your safety net: any eigenpair you report should satisfy Av=λvAv = \lambda v by direct multiplication. They show up wherever a linear process has preferred directions or natural modes, including differential equations, vibration problems, dynamical systems, Markov models, and principal component analysis.

Practice this procedure

Run all four steps for

[4011].\begin{bmatrix} 4 & 0 \\ 1 & 1 \end{bmatrix}.

Find the eigenvalues first, then solve for the eigenvectors, and check one pair by direct multiplication. To go one step further, run your own version in a solver and compare the eigenpairs, not just the final numbers.

Frequently Asked Questions

What is an eigenvector in simple terms?
An eigenvector is a nonzero vector whose direction stays the same after a matrix acts on it. The matrix may stretch it, shrink it, or reverse it, and that scale factor is the eigenvalue.
Do all matrices have real eigenvalues?
No. A square matrix can fail to have real eigenvalues, even though it may have complex eigenvalues. The answer depends on which number system you are working in.

Need help with a problem?

Upload your question and get a verified, step-by-step solution in seconds.

Open GPAI Solver →