Summarize this article:
245 LearnersLast updated on October 22, 2025

An identity matrix is like multiplying a number by 1 gives the same number; multiplying any matrix by an identity matrix results in the same matrix. In this article, we will explore the definition, properties, and uses of the identity matrix.
An identity matrix is a type of square matrix with 1s on the main diagonal and 0s in all other positions. We call it an identity matrix because when we multiply it by other matrices of the same size, it won't change that matrix.
It works like how multiplying 1 by any number does not change the number. If A is a matrix, then: A × I = I × A = A. The identity matrix is also known as the multiplicative identity for matrices.
2 × 2 identity matrix:
\(I_2 = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}\)
A 3 × 3 identity matrix is written as:
\(I_3 = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}\)
The properties of the identity matrix are important when solving equations, transforming shapes, or working with matrix algebra. Given below are some of the properties of the identity matrix.
The order of an identity matrix refers to the dimensions of the matrix. Since an identity matrix is a square matrix, it is always in the form of n × n. The identity matrix is always square. Here are some of the orders of an identity matrix.
2 × 2 identity matrix:
\(I_2 = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}\)
3 × 3 identity matrix:
\(I_3 = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}\)
4 × 4 identity matrix:
\(I_4 = \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix}\)
5 × 5 identity matrix:
\(I_5 = \begin{bmatrix} 1 & 0 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 & 0 \\ 0 & 0 & 1 & 0 & 0 \\ 0 & 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 0 & 1 \end{bmatrix}\)
The inverse of an identity matrix works similarly to the inverse of numbers. Multiplying a number and its reciprocal gives 1; multiplying a matrix by its inverse is called the identity matrix.
If A is a matrix, its inverse is denoted by A-1 and multiplying them gives the identity matrix: A × A-1 = I.
Here, I is the identity matrix. The identity matrix looks like:
\(I = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}\). Given below are the steps to find the inverse of a matrix using the identity matrix.
Step 1: Write the given matrix next to the identity matrix, and draw a line to show that they are side by side.
Example: \(A = \begin{bmatrix} 5 & 2 \\ 3 & 1 \end{bmatrix}\).
Draw the matrix A left side and add the identity matrix of the same order on the right side.
\(\left[ \begin{array}{cc|cc} 2 & 1 & 1 & 0 \\ 5 & 3 & 0 & 1 \end{array} \right]\)
Step 2: Apply row operations to change the left side of an augmented matrix into an identity matrix.
To make the first element as 1 in row 1, we must divide row 1 (R1) by 2.
R1 = R1 ÷ 2
\(\left[ \begin{array}{cc|cc} 1 & 2.5 & 0.5 & 0 \\ 5 & 3 & 0 & 1 \end{array} \right]\)
We want to make the first element 0 in row 2.
R2 = R2 - R1
\(\left[ \begin{array}{cc|cc} 1 & 2.5 & 0.5 & 0 \\ 0 & 0.5 & -0.5 & 1 \end{array} \right]\)
Make the second element in row 2 as 1. Divide row 2 by 0.5.
R2 = R2 ÷ 0.5
\(\left[ \begin{array}{cc|cc} 1 & 2.5 & 0.5 & 0 \\ 0 & 1 & -1 & 2 \end{array} \right]\)
Make the second element from row 1 as 0. To make it, multiply 2.5 by row 2 and subtract row 1.
R1 = R1 - 2.5 × R2
\(\left[ \begin{array}{cc|cc} 1 & 0 & 3 & -5 \\ 0 & 1 & -1 & 2 \end{array} \right]\)
Step 3: The left side is the identity matrix, and the right side is the inverse of A. Therefore, the inverse of A is:
\(A^{-1} = \begin{bmatrix} -1 & 3 \\ 2 & -5 \end{bmatrix}\)
An identity matrix, denoted by I, is a square matrix with 1s on the diagonal and 0s elsewhere. An n × n identity matrix is In. Two matrices whose product equals I are called inverses.
The format of In × n matrix is:
\(\begin{bmatrix} 1 & \cdot & \cdot & \cdot & \cdot \\ 0 & 1 & \cdot & \cdot & \cdot \\ \cdot & \cdot & 1 & \cdot & \cdot \\ \cdot & \cdot & \cdot & 1 & \cdot \\ \cdot & \cdot & \cdot & \cdot & 1 \end{bmatrix}\)
The two main operations used in the identity matrix are:
Multiplying with the Identity Matrix:
Multiplying any square matrix by the identity matrix gives the same matrix. Let’s understand how to multiply matrices with an identity matrix through an example.
Example:
\(A = \begin{bmatrix} 4 & 3 \\ 3 & 2 \end{bmatrix}\)
We need to multiply the given matrix by an identity matrix of the same order. The identity matrix is:
I \(= \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}\)
Multiply the matrices,
\(A \times I = \begin{bmatrix} 4 & 3 \\ 3 & 2 \end{bmatrix} \times \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} = \begin{bmatrix} 4 & 3 \\ 3 & 2 \end{bmatrix} = A\)
Therefore, multiplying any matrix by an identity matrix results in the same matrix.
Inverse of a Matrix using Identity Matrix:
To find the inverse of a matrix, we use a method that involves row operations and the identity matrix, follow the steps given below:
Step 1: Create an augmented matrix by placing the identity matrix of the same size next to the given matrix.
Step 2: Use row operators to change the left side of an augmented matrix into an identity matrix B
Step 3: Once the left side becomes the identity matrix, the right side will be the inverse of the original matrix.
The identity matrix is a special square matrix that acts like the number 1 in matrix operations. It is very important in algebra and linear equations because it leaves other matrices unchanged when multiplied. Knowing its key properties and tricks can make calculations faster and help you solve problems more easily.
Students make mistakes while dealing with the identity matrix. Given below are some common mistakes and ways to avoid them.
The identity matrix has many practical uses in real-world situations, especially in fields like computer graphics, engineering, and data science. Listed below are some of the real-life applications of the identity matrix.
Multiply a matrix A =[2 3 4 5] by the identity matrix I = [1 0 0 1]
\(A = \begin{bmatrix} 2 & 3 \\ 4 & 5 \end{bmatrix}\)
Multiply the given matrices,
\(A \times I = \begin{bmatrix} 2 & 3 \\ 4 & 5 \end{bmatrix} \times \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}\)
Multiplying any square matrix by the identity matrix gives the same matrix. Therefore, the matrix is,
A × I \(= \begin{bmatrix} 2 & 3 \\ 4 & 5 \end{bmatrix} \)
Multiply the matrix A by the identity matrix, A = [2 4 1 0 1 3 5 6 0]
\(A = \begin{bmatrix} 2 & 4 & 1 \\ 0 & 1 & 3 \\ 5 & 6 & 0 \end{bmatrix}\)
By multiplying the given square matrix by the same order of identity matrix, the identity matrix is,
I = \( \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}\)
Multiplying both matrices, we will get the same given matrix as the answer.
A × I = \( \begin{bmatrix} 2 & 4 & 1 \\ 0 & 1 & 3 \\ 5 & 6 & 0 \end{bmatrix}\)
If A = [1 0 0 1], what is the inverse of A?
A-1 = \( \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}\)
The inverse of an identity matrix is the identity matrix itself.
Therefore, the inverse of A is A-1 = \( \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}\)
Multiply 5 with the identity matrix I = [1 0 01]
\(I = \begin{bmatrix} 5 & 0 \\ 0 & 5 \end{bmatrix}\)
When we are multiplying a matrix by a scalar number, multiply each element of the matrix by the scalar number.
Therefore, I become,
\(I = \begin{bmatrix} 5 & 0 \\ 0 & 5 \end{bmatrix}\)
Multiply the Identity Matrix, I = [1 0 0 1], with a column vector v = [6 -3]
\(I = \begin{bmatrix} 6 \\ -3 \end{bmatrix}\)
Multiplying an identity matrix by a vector keeps the vector unchanged.
\(I = \begin{bmatrix} 6 \\ -3 \end{bmatrix}\)
Jaskaran Singh Saluja is a math wizard with nearly three years of experience as a math teacher. His expertise is in algebra, so he can make algebra classes interesting by turning tricky equations into simple puzzles.
: He loves to play the quiz with kids through algebra to make kids love it.






