Guozhen AIGlobal AI field notes and model intelligence

English translation

16. Eigenvectors: Definition and Intuition

Published:

Category: Linear Algebra for AI

Read time: 3 min

Reads: 0

Lesson #16Views are counted together with the original Chinese articleImages are preserved from the source page

Concept Diagram: Definition of Eigenvectors

An eigenvector is not a fixed-length arrow—it is a direction. As long as the direction remains unchanged, scalar multiples of the same vector still represent the same eigenvector.

Verification Diagram: Definition of Eigenvectors

I will substitute back into Av=λvA\mathbf{v} = \lambda \mathbf{v} to verify. Solving only for candidate values without substituting them back to check risks misidentifying ordinary vectors as eigenvectors.

In the previous article, we discussed the definition and computation of eigenvalues—a foundation essential for understanding eigenvectors. Eigenvectors are a central concept in linear algebra and play critical roles across many applications, especially in artificial intelligence, machine learning, and data analysis.

Definition of Eigenvectors

An eigenvector is a special type of vector that—when transformed by a linear map—changes only in magnitude (and possibly sign), but not in direction. Specifically, for a given square matrix AA, if there exists a nonzero vector v\mathbf{v} and a scalar λ\lambda satisfying:

Application Checklist: Eigenvectors — Definition

After reading “Eigenvectors — Definition”, try working through a small concrete example step-by-step, then assess which steps you can now perform independently.

Application Reflection Card: Eigenvectors — Definition

By this point, you can organize “Eigenvectors — Definition” into a reflection table: first clarify the main conceptual thread, then validate it using a small, self-contained task.

Av=λv,A \mathbf{v} = \lambda \mathbf{v},

then v\mathbf{v} is called an eigenvector of matrix AA, and λ\lambda is the corresponding eigenvalue.

Example Illustration

Consider the simple 2×22\times2 matrix:

A=(2112).A = \begin{pmatrix} 2 & 1 \\ 1 & 2 \end{pmatrix}.

We wish to find the eigenvectors of AA. First, we compute its eigenvalues λ\lambda by solving the characteristic equation:

det(AλI)=0,\det(A - \lambda I) = 0,

where II is the 2×22\times2 identity matrix.

Computing AλIA - \lambda I, we obtain:

AλI=(2λ112λ).A - \lambda I = \begin{pmatrix} 2 - \lambda & 1 \\ 1 & 2 - \lambda \end{pmatrix}.

Its determinant is:

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

Thus, the eigenvalues are λ1=1\lambda_1 = 1 and λ2=3\lambda_2 = 3.

Next, we compute the eigenvectors associated with each eigenvalue.

Computing Eigenvectors

For each eigenvalue λ\lambda, we solve (AλI)v=0(A - \lambda I)\mathbf{v} = \mathbf{0} to find the corresponding eigenvectors.

Eigenvector Definition Decision Card

To determine whether a vector is an eigenvector:

  1. Confirm it is nonzero;
  2. Compute the result of applying the matrix AA to it;
  3. Check whether the output is a scalar multiple of the original vector.

Eigenvalue λ1=1\lambda_1 = 1:
We solve:

Av=1v(AI)v=0.A \mathbf{v} = 1 \cdot \mathbf{v} \quad \Longleftrightarrow \quad (A - I)\mathbf{v} = \mathbf{0}.

Here,

AI=(1111).A - I = \begin{pmatrix} 1 & 1 \\ 1 & 1 \end{pmatrix}.

Solving (AI)v=0(A - I)\mathbf{v} = \mathbf{0} yields an eigenvector:

(11).\begin{pmatrix} 1 \\ -1 \end{pmatrix}.

We often prefer normalized eigenvectors—i.e., those of unit length. The above eigenvector normalizes to:

v1=12(11).\mathbf{v}_1 = \frac{1}{\sqrt{2}} \begin{pmatrix} 1 \\ -1 \end{pmatrix}.

Eigenvalue λ2=3\lambda_2 = 3:
Similarly, solve:

(A3I)v=0.(A - 3I)\mathbf{v} = \mathbf{0}.

Here,

A3I=(1111).A - 3I = \begin{pmatrix} -1 & 1 \\ 1 & -1 \end{pmatrix}.

Solving gives an eigenvector:

(11).\begin{pmatrix} 1 \\ 1 \end{pmatrix}.

Normalizing:

v2=12(11).\mathbf{v}_2 = \frac{1}{\sqrt{2}} \begin{pmatrix} 1 \\ 1 \end{pmatrix}.

Summary

Eigenvectors are vectors whose direction remains invariant under a given linear transformation. They provide deep insight into the geometric and algebraic structure of linear maps—and serve as foundational tools in dimensionality reduction, image processing, recommendation systems, and beyond.

Linear Algebra Reading Map Card

“Eigenvectors — Definition” is best read alongside its diagrams. Begin by clarifying the core question and verification criteria; then proceed to the conceptual explanation and worked steps—this helps connect ideas into a coherent mental model.

In the next article, we’ll explore the relationship between eigenvalues and eigenvectors—namely, eigen-decomposition, a concept tightly linked to today’s topic. Stay tuned!

Continue

Keep reading from here

Browse English site

Reader Messages

Reader messages

Questions, corrections, extra sources, or hands-on results can be left here. No login is required.

Max 800 characters

To reduce spam, each message is checked for length, link count, and posting frequency.

0/800

Messages

0 messages
Loading messages...