What Is Identity Matrix? Examples - Cuemath
Maybe your like
The identity matrix is referred to as the multiplicative identity of matrices. Before going to learn what is an identity matrix, let us recall the meaning of identity in math. Identity is a mathematical quantity which when operated with some quantity leaves the same quantity. Let us consider the following examples.
- The additive identity is 0 as adding any number to 0 gives the same number as the sum. For example, 3 + 0 = 3, 0 + (-1) = -1, etc.
- The multiplicative identity is 1 as multiplying any number with 1 gives the same number as the product. For example, 3 × 1 = 3, 1 × (-1) = -1, etc.
In the same way, of course, we know that by adding the null matrix \(\left[\begin{array}{rr}0 & 0 \\ \\ 0 & 0 \end{array}\right]\) to any 2 × 2 matrix gives us the same matrix and hence a null matrix is called additive identity matrix. But what is the multiplicative identity with respect to matrices? The answer is the identity matrix and let us learn this in detail here.
| 1. | What is Identity Matrix? |
| 2. | Identity Matrix of Different Orders |
| 3. | Verification of Identity Matrix |
| 4. | Properties of Identity Matrix |
| 5. | Finding Inverse Matrix Using Identity Matrix |
| 6. | Applications of Identity Matrix |
| 7. | FAQs on Identity Matrix |
What is Identity Matrix?
An identity matrix is a square matrix in which each of the elements of its principal diagonal is a 1 and each of the other elements is a 0.It is also known as the unit matrix. We represent an identity matrix of order n × n (or n) as In. Sometimes we denote this simply as I. The mathematical definition of an identity matrix is,
- In (or) I = [aij]n × n, where aij = 1 when i = j, and aij = 0 when i ≠ j.
An identity matrix in general is an identity with respect to multiplication. Thus, for any matrix A,
AI = IA = A
i.e., by multiplying any matrix A with the identity matrix of the same order, we get the same matrix as the product and hence the name "identity" for it.

Identity Matrix of Different Orders
Here are some examples of identity matrices of different orders. Note that an identity matrix is a square matrix always.
- 2x2 identity matrix: I2 = \(\left[\begin{array}{rr}1 & 0 \\ \\ 0 & 1 \end{array}\right]\).
- 3x3 identity matrix: I3 = \(\left[\begin{array}{rr}1 & 0 & 0\\ 0 & 1 & 0\\ 0 & 0 & 1\end{array}\right]\).
- 4x4 identity matrix: I4 = \(\left[\begin{array}{rr}1 & 0 & 0&0\\ 0 & 1 & 0&0\\ 0 & 0 & 1&0\\0&0&0&1\end{array}\right]\).
Verification of Identity Matrix
If I is an identity matrix and A is any matrix of the same order, then by the definition, AI = IA = A. Let us verify this by taking matrices of order 2 × 2.
A = \(\left[\begin{array}{rr}1 & 5 \\ \\-3 & 2 \end{array}\right]\) and I = \(\left[\begin{array}{rr}1 & 0 \\ \\ 0 & 1 \end{array}\right]\) (which is identity with respect to multiplication).
Verifying AI = A
AI = \(\left[\begin{array}{rr}1 & 5 \\ \\-3 & 2 \end{array}\right]\) \(\left[\begin{array}{rr}1 & 0 \\ \\ 0 & 1 \end{array}\right]\)
= \(\left[\begin{array}{rr}1(1)+5(0) & 1(0)+5(1) \\ \\ -3(1)+2(0) & -3(0)+2(1) \end{array}\right]\)
= \(\left[\begin{array}{rr}1 & 5 \\ -3 & 2 \end{array}\right]\)
= A
Since matrices don't need to be commutative with respect to multiplication, we have to verify IA = A as well.
Verifying IA = A
IA = \(\left[\begin{array}{rr}1 & 0 \\ \\ 0 & 1 \end{array}\right]\) \(\left[\begin{array}{rr}1 & 5 \\ -3 & 2 \end{array}\right]\)
= \(\left[\begin{array}{rr}1(1)+0(-3) & 1(5)+0(2) \\ \\ 0(1)+1(-3) & 0(5)+1(2) \end{array}\right]\)
= \(\left[\begin{array}{rr}1 & 5 \\ \\ -3 & 2 \end{array}\right]\)
= A
Thus, we have verified that AI = IA = A.
Similarly, you can try verifying the identity matrix of orders 3 × 3, 4 × 4, etc.
Properties of Identity Matrix
Here are the identity matrix properties based upon its definition.
- The identity matrix is always a square matrix.
- By multiplying an identity matrix with any other matrix results in the same matrix.
- Every identity matrix is a diagonal matrix as only its principal diagonal's elements are nonzeros.
- An identity matrix is symmetric as IT = I.
- Every identity matrix is a scalar matrix as all its principal diagonal's elements are equal and the rest of the elements are zeros.
- The determinant of every identity matrix is 1.
- The inverse of identity matrix is itself as I · I-1 = I-1 · I = I.
- In = I, for any integer 'n'. i.e., the square of identity matrix is equal to itself, the cube of identity matrix is equal to itself, and so on.
- By multiplying a matrix with its inverse, the result is an identity matrix
- We can find the inverse of a matrix using the identity matrix (Let us see this in the next section).
Finding Inverse Matrix Using Identity Matrix
The inverse of a matrix A (which is written as A-1) is a matrix B (and vice versa) if and only if AB = BA = I, where A, B, and I are the square matrices of the same order. Given A and B, it is easy to verify whether they are inverses of each other just by verifying whether AB = BA = I. But if a matrix A is given then how can we find its inverse B? We can find the inverse matrix of a matrix using the following steps:
- Step 1: Write an augmented matrix with the given matrix adjoining it with the identity matrix of the same order and we separate these two matrices by a line.
- Step 2: We apply row operations aiming to convert the left side matrix (which is A) to an identity matrix.
- Step 3: The matrix that is left on the right side itself is our inverse matrix.

We can see an example of finding the inverse matrix using these steps in the "Identity Matrix Examples" section below.
Applications of Identity Matrix
The identity matrix is used for various purposes in linear algebra. Here are the applications of the identity matrix.
- An identity matrix is used to find the inverse of a matrix.
- Also, an identity matrix is used to verify whether any two given matrices are inverses of each other.
- An identity matrix is used to find the eigenvalues and eigenvectors.
- An identity matrix is used while solving the system of equations using the elementary row operations.
Important Notes on Identity Matrix:
Here are some important points to note that are related to an identity matrix.
- If you see an identity matrix without any specification of operation, then by default, it should be understood that it is an identity matrix with respect to multiplication.
- To write an identity matrix of some order, first, write an empty matrix with the given order, write 1s in the place of elements of the principal diagonal, and finally write 0s in place of all other elements.
- If AB = BA = I, then A and B are inverses of each other.
- To find the inverse of a matrix, write it adjoining the identity matrix of the same order to it on its right side. Apply row operations to the entire augmented matrix aiming to make the left side matrix an identity matrix. Then the right side matrix will be the inverse of the given matrix.
☛ Related Topics:
Here are some topics that you may find interesting while reading about the identity matrix.
- Addition of Matrices
- Subtraction of Matrices
- Indentity Matrix Calculator
- Matrix Addition Calculator
Tag » What Is The Identity Matrix
-
Identity Matrix - Wikipedia
-
What Is An Identity Matrix? - StudyPug
-
Identity Matrix (Unit Matrix) - Definition, Properties And Examples
-
Identity Matrix - Varsity Tutors
-
Identity Matrix - StatLect
-
Identity Matrix Definition - DeepAI
-
Identity Matrix: Intro To Identity Matrices (article) - Khan Academy
-
Intro To Identity Matrix (video) | Matrices - Khan Academy
-
The Identity Matrix And Its Properties - MathBootCamps
-
Definition Of Identity Matrix - Web Formulas
-
Identity Matrix – Definition, Properties And Solved Examples - Vedantu
-
Why Is An Identity Matrix Called An Identity Matrix? - Quora
-
What Is An Identity Matrix Useful For? - Quora