Eigenvalues and Eigenvectors (original) (raw)

Last Updated : 13 May, 2026

Eigenvalues and eigenvectors are fundamental concepts in linear algebra, used in various applications such as matrix diagonalization, stability analysis, and data analysis (e.g., Principal Component Analysis). They are associated with a square matrix and provide insights into its properties.

Eigenvalues

Eigenvalues are scalar values linked to a matrix or linear transformation. They indicate how much an eigenvector gets stretched or compressed during the transformation. The eigenvector's direction remains unchanged unless the eigenvalue is negative, in which case the direction is simply reversed.

The equation for eigenvalue is given by,

Av = \lambda v
where,

Eigenvectors

Eigenvectors are non-zero vectors that, when multiplied by a matrix, change only in magnitude, not direction. Eigenvalues are found first. For an n × n matrix A, eigenvectors are n × 1 column vectors (right eigenvectors).

Alternatively, the left eigenvector can be found using the equation vA = λv, where v is a row matrix of size 1 × n.

Eigenvector Equation

The Eigenvector equation is the equation that is used to find the eigenvector of any square matrix. The eigenvector equation is

Av = λv
where,

Here the left hand side is a matrix vector multiplication and right side is a scalar multiplication. So let's rewrite the right-hand side as matrix vector multiplication.

Right hand side represents scaling any vector by a factor of lambda which can be written as

\lambdaI = \begin{bmatrix} \lambda & 0 & 0 \\ 0 & \lambda & 0 \\ 0 & 0 & \lambda \end{bmatrix}

A \overrightarrow{v} = (Iλ)\overrightarrow{v}

A \overrightarrow{v} - Iλ\overrightarrow{v} = 0

(A - Iλ)\overrightarrow{v} = 0

Product of a matrix to a non-zero vector is zero only if the transformation associated with that matrix squishes space into lower dimension. That implies the determinant of that matrix is zero.

i.e. det(A - ƛI) = 0

Finding an Eigenvector

The eigenvector of the following square matrix can be easily calculated using the steps below,

**Step 1: Find the eigenvalues of the matrix A, using the equation det |(A – λI| =0, where “I” is the identity matrix of order similar to matrix A
**Step 2: The value obtained in Step 2 are named as, λ _1, λ_2, λ_3….
**Step 3: Find the eigenvector (X) associated with the eigenvalue λ1 using the equation, (A – λ_1I) X = 0
**Step 4: Repeat step 3 to find the eigenvector associated with other remaining eigenvalues λ_2, λ_3….

Following these steps gives the eigenvector related to the given square matrix.

Types of Eigenvector

The eigenvectors calculated for the square matrix are of two types which are,

**Right Eigenvector: The eigenvector which is multiplied by the given square matrix from the right-hand side is called the right eigenvector. It is calculated by using the following equation,

AV_R = \lambda V_R

Where,

The value of VR is, \bold{V_{R} = \begin{bmatrix} v_{1}\\ v_{2}\\ v_{3}\\ .\\ .\\ v_{n}\\ \end{bmatrix}}

**Left Eigenvector: The eigenvector which is multiplied by the given square matrix from the left-hand side is called the left eigenvector. It is calculated by using the following equation,

V_LA = V_L\lambda
where,

The value of VL is,

V_L = [v_1, v_2, v_3,..., v_n]

Eigenvectors of a Square Matrix

We can easily find the eigenvector of square matrices of order n × n. Now, let's find the following square matrices:

**Eigenvector of a 2 × 2 matrix

The Eigenvector of the 2 × 2 matrix can be calculated by,

An example of the same is,

**Example: Find the eigenvalues and the eigenvector for the matrix A = \begin{bmatrix} 1 & 2\\ 5& 4 \end{bmatrix}

**Solution:

If eigenvalues are represented using λ and the eigenvector is represented as v = \begin{bmatrix} a\\b \end{bmatrix}

Then the eigenvector is calculated by using the equation,

|A- λI| = 0

\begin{bmatrix}1 & 2\\ 5& 4\end{bmatrix} -λ\begin{bmatrix}1 & 0\\ 0 & 1\end{bmatrix} = \begin{bmatrix}0 & 0\\ 0& 0\end{bmatrix}

\begin{bmatrix} 1 - λ& 2\\ 5& 4 - λ \end{bmatrix} = 0

(1-λ) ⨉ (4-λ) - (2 ⨉ 5) = 0
⇒ 4 - λ - 4λ + λ2 - 10 = 0
⇒ λ2 - 5λ - 6 = 0
⇒ λ2 - (6λ - λ) - 6 = 0
⇒ λ2 - 6λ + λ - 6 = 0
⇒ (λ-6)(λ+1) = 0
λ = 6 and λ = -1

Thus, the eigenvalues are 6 and -1.

(A-λI)v = 0

⇒ \begin{bmatrix}1 - 6& 2\\ 5& 4 - 6\end{bmatrix}.\begin{bmatrix}a\\ b\end{bmatrix} = 0

⇒ \begin{bmatrix}-5& 2\\ 5& -2\end{bmatrix}.\begin{bmatrix}a\\ b\end{bmatrix} = 0
⇒ 5a - 2b = 0

Simplifying the above equation we get, 5a=2b

The required eigenvector is, \begin{bmatrix}a\\b\end{bmatrix} = \begin{bmatrix}2\\5\end{bmatrix}

⇒ \begin{bmatrix}1 - (-1)& 2\\ 5& 4 - (-1)\end{bmatrix}.\begin{bmatrix}a\\ b\end{bmatrix} = 0

⇒ \begin{bmatrix}2& 2\\ 5& 5\end{bmatrix}.\begin{bmatrix}a\\ b\end{bmatrix} = 0
⇒ 2a + 2b = 0, ⇒ 5a + 5b = 0

simplifying the above equation we get, a = -b

The required eigenvector is, \begin{bmatrix}a\\b\end{bmatrix} = \begin{bmatrix} 1\\-1\end{bmatrix}

Then the eigenvectors of the given 2 × 2 matrix are \begin{bmatrix}a\\b\end{bmatrix} = \begin{bmatrix}2\\5\end{bmatrix}, \begin{bmatrix}a\\b\end{bmatrix} = \begin{bmatrix}1\\-1\end{bmatrix}

These are two possible eigen vectors but many of the corresponding multiples of these eigen vectors can also be considered as other possible eigen vectors.

Eigenvector of a 3 × 3 Matrix

An example of eigenvector of 3x3 matrix is,

**Example: Find the eigenvalues and the eigenvector for the matrix A = \begin{bmatrix} 2 & 2 & 2 \\ 2 & 2 & 2\\2 & 2 & 2 \end{bmatrix}

**Solution:

If eigenvalues are represented using λ and the eigenvector is represented as v = \begin{bmatrix} a\\b\\c \end{bmatrix}

Then the eigenvector is calculated by using the equation,

|A- λI| = 0
\begin{bmatrix}2 & 2 & 2\\ 2 & 2 & 2\\ 2 & 2 & 2\end{bmatrix} -λ\begin{bmatrix}1 & 0 & 0\\ 0 & 1 & 0\\0 & 0 & 1\end{bmatrix} = \begin{bmatrix}0 & 0 & 0\\ 0 & 0 & 0\\ 0 & 0 & 0\end{bmatrix}

\begin{bmatrix} 2 - λ & 2 & 2 \\ 2 & 2 - λ & 2 \\ 2 & 2 & 2- λ\end{bmatrix} = 0

Simplifying the above determinant we get
⇒ (2-λ)(λ2) + 2λ2 + 2λ2 = 0 ⇒ (-λ3) + 6λ2 = 0
⇒ λ2(6 - λ) = 0
⇒ λ = 0, λ = 6, λ = 0

**For λ = 0

(A - λI) v = 0
⇒ \begin{bmatrix}2 - 0& 2& 2\\ 2& 2 - 0&2\\2 & 2 & 2-0\end{bmatrix}.\begin{bmatrix}a\\ b\\c\end{bmatrix} = 0

⇒ \begin{bmatrix}2& 2& 2\\ 2& 2 &2\\2 & 2 & 2\end{bmatrix}.\begin{bmatrix}a\\ b\\c\end{bmatrix} = 0

Simplifying the above equation we get
2a + 2b + 2c = 0
⇒ a + b + c = 0

Let b = k1 and c = k2
⇒ a + k1 + k2 = 0
⇒ a = -(k1 + k2)

Thus, the eigenvector is,
\begin{bmatrix}a\\ b\\c\end{bmatrix} = \begin{bmatrix}-(k_{1}+k_{2})\\ k_{1}\\k_{2}\end{bmatrix}

taking k1 = 1 and k2 = 0, the eigenvector is,
\begin{bmatrix}a\\ b\\c\end{bmatrix} = \begin{bmatrix}-1\\ 1\\0\end{bmatrix}

taking k1 = 0 and k2= 1, the eigenvector is,
\begin{bmatrix}a\\ b\\c\end{bmatrix} = \begin{bmatrix}-1\\ 0\\1\end{bmatrix}

**For λ = 6

(A - λI) v = 0
⇒ \begin{bmatrix}2 - 6& 2& 2\\ 2& 2 -6&2\\2 & 2 & 2-6\end{bmatrix}.\begin{bmatrix}a\\ b\\c\end{bmatrix} = 0

⇒ \begin{bmatrix}-4& 2& 2\\ 2& -4 &2\\2 & 2 & -4\end{bmatrix}.\begin{bmatrix}a\\ b\\c\end{bmatrix} = 0

Simplifying the above equation we get,
-4a +2b +2c = 0 ⇒ 2 (-2a + b + c) = 0
⇒ 2a = b + c

Let b = k1 and c = k2 and taking k1 = k2 = 1 we get,
\begin{bmatrix}a\\ b\\c\end{bmatrix} = \begin{bmatrix}1\\ 1\\1\end{bmatrix}

Thus, the eigenvector is,
\begin{bmatrix}a\\ b\\c\end{bmatrix} = \begin{bmatrix}1\\ 1\\1\end{bmatrix}

Eigenspace

The eigenspace of a matrix A corresponding to an eigenvalue λ is the set of all vectors v that satisfy the equation: (A − λI)v = 0.

This means the eigenspace is the null space of (A − λI). It contains all eigenvectors associated with the eigenvalue λ, along with the zero vector. The basis vectors of the eigenspace are always linearly independent.

Steps to Find the Eigenspace of a Matrix

**Step 1: Find the eigenvalues of the square matrix A by solving: det(A − λI) = 0

**Step 2: For each eigenvalue λ, substitute it into: (A − λI)v = 0 and solve the system to find the corresponding eigenvectors.

**Step 3: The complete set of solutions obtained for that eigenvalue, together with the zero vector, forms the eigenspace corresponding to that eigenvalue.

**Step 4: Repeat the same process for all remaining eigenvalues to determine their respective eigenspaces.

From the above example of given 3 × 3 matrix A, the eigenspace so formed is \begin{bmatrix}-1\\ 1\\0\end{bmatrix},\begin{bmatrix}-1\\ 0\\1\end{bmatrix},\begin{bmatrix}1\\ 1\\1\end{bmatrix}

Diagonalize Matrix Using Eigenvalues and Eigenvectors

Eigenvalues and Eigenvectors are used to find diagonal matrices. A diagonal matrix is a matrix which can be written as,

A = XDX-1

Where,

**Example: Diagonalize the matrix A = \begin{bmatrix} 2 & 2 & 2 \\ 2 & 2 & 2\\2 & 2 & 2 \end{bmatrix}

**Solution:

We have already solved for the eigenvalues and the eigenvectors of the A = \begin{bmatrix} 2 & 2 & 2 \\ 2 & 2 & 2\\2 & 2 & 2 \end{bmatrix}

The eigenvalues of the A are λ = 6, λ = 0 and λ = 0
The eigenvectors of A are \begin{bmatrix}1\\ 1\\1\end{bmatrix},\begin{bmatrix}-1\\ 1\\0\end{bmatrix},\begin{bmatrix}-1\\ 0\\1\end{bmatrix}
Thus,
D = \begin{bmatrix}6 & 0 & 0\\0 & 0 & 0\\0 & 0 & 0\end{bmatrix}

X = \begin{bmatrix} 1 & 1 & 1\\1 & -1 & 0\\1 & 0 & -1\end{bmatrix}

Applications

**Google PageRank Algorithm

**Markov Processes & Steady-State Analysis

**Principal Component Analysis (PCA)

**Latent Semantic Analysis (LSA) in NLP

**Spectral Graph Theory in Network Analysis

**Computer Vision (Eigenfaces)

**Control System Stability in Robotics & AI

**Signal Processing & Data Transmission

Solved Examples

**Example 1: Find the eigenvectors of the matrix A = \begin{bmatrix}1 & 1 & 0\\0 & 1 & 1\\0 & 0 & 1\end{bmatrix}

**Solution:

The eigen values of the matrix is found using,
|A - λI| = 0
\begin{bmatrix}1-λ & 1 & 0\\0 & 1-λ & 1\\0 & 0 & 1-λ\end{bmatrix} = 0
(1 - λ)3 = 0

Thus, the eigen values are, λ = 1, 1, 1

As the all the eigenvalues are equal we have three identical eigenvectors. We will find the eigenvectors for λ = 1, using (A - λI)v = O

\begin{bmatrix}1-1 & 1 & 0\\0 & 1-1 & 1\\0 & 0 & 1-1\end{bmatrix}.\begin{bmatrix}a\\ b\\c\end{bmatrix} = \begin{bmatrix}0\\ 0\\0\end{bmatrix}

\begin{bmatrix}0 & 1 & 0\\0 & 0 & 1\\0 & 0 & 0\end{bmatrix}.\begin{bmatrix}a\\ b\\c\end{bmatrix} = \begin{bmatrix}0\\ 0\\0\end{bmatrix}
solving the above equation we get,

Then the eigenvector is,
\begin{bmatrix}a\\ b\\c\end{bmatrix}= \begin{bmatrix}k\\ 0\\0\end{bmatrix} = k\begin{bmatrix}1\\ 0\\0\end{bmatrix}

Example 2: Find the eigenvectors of the matrix A = \begin{bmatrix}5 & 0\\0 & 5 \end{bmatrix}

**Solution:

The eigen values of the matrix is found using,
|A - λI| = 0
\begin{bmatrix}5-λ & 0\\0 & 5-λ \end{bmatrix} = 0
(5 - λ)2 = 0

Thus, the eigen values are,
λ = 5, 5

As the all the eigenvalues are equal we have three identical eigenvectors. We will find the eigenvectors for λ = 5, using
(A - λI)v = O
\begin{bmatrix}5-5 & 0 \\ 0 & 5-5\end{bmatrix}.\begin{bmatrix}a\\ b\end{bmatrix} = \begin{bmatrix}0\\ 0\end{bmatrix}

Simplifying the above we get,
a = 1, b = 0
a = 0, b = 1

Then the eigenvector is,
\begin{bmatrix}a\\ b\end{bmatrix}= \begin{bmatrix}1\\ 0\end{bmatrix} , \begin{bmatrix}0\\ 1\end{bmatrix}