A matrix is defined as a rectangular array of numbers that are arranged in rows and columns. The size of a matrix can be determined by the number of rows and columns in it. A matrix is said to be an "m by n" matrix when it has "m" rows and "n" columns and is written as an "m × n" matrix. For example, a matrix of order "5 × 6" has five rows and six columns. We have different types of matrices like rectangular matrices, square matrices, null matrices, triangular matrices, symmetric matrices, etc.
Idempotent Matrix Definition
An idempotent matrix is defined as a square matrix that remains unchanged when multiplied by itself. Consider a square matrix "P" of any order, and the matrix P is said to be an idempotent matrix if and only if P2 = P. Idempotent matrices are singular and can have non-zero entries. Every identity matrix is also an idempotent matrix, as the identity matrix gives the same matrix when multiplied by itself.
Examples of Idempotent Matrix
The matrix given below is an idempotent matrix of order "2 × 2."
A_{2,2} = \left[\begin{array}{cc} 4 & -1\\ 12 & -3 \end{array}\right]
The matrix given below is an idempotent matrix of order "3 × 3."
B_{3,3} = \left[\begin{array}{ccc} 2 & -3 & -5\\ -1 & 4 & 5\\ 1 & -3 & -3 \end{array}\right]
Idempotent Matrix Formula
Let us consider a "2 × 2" square matrix P = \left[\begin{array}{cc} a & b\\ c & d \end{array}\right] . As P is an idempotent matrix, P2 = P.
\left[\begin{array}{cc} a & b\\ c & d \end{array}\right]\times\left[\begin{array}{cc} a & b\\ c & d \end{array}\right] = \left[\begin{array}{cc} a & b\\ c & d \end{array}\right]
\left[\begin{array}{cc} a^{2}+bc & ab+bd\\ ac+cd & bc+d^{2} \end{array}\right] = \left[\begin{array}{cc} a & b\\ c & d \end{array}\right]
Now, comparing the terms on each side, we get
1) a2 + bc = a
bc = a − a2
2) ab + bd = b
ab + bd − b = 0
b (a + d − 1) = 0
b = 0 or a + d − 1 = 0
d = 1 − a
So, if a matrix P = \left[\begin{array}{cc} a & b\\ c & d \end{array}\right] is said to be an idempotent matrix, if bc = a − a2 and d = 1 − a.
Properties of Idempotent Matrix
The following are some important properties of an idempotent matrix:
- Every idempotent matrix is a square matrix.
- All idempotent matrices are singular matrices, apart from the identity matrix.
- The determinant of an idempotent matrix is either one or zero.
- The non-diagonal entries of an idempotent matrix can be non-zero entries.
- The trace of an idempotent matrix is always an integer and equal to the rank of the matrix.
- The eigenvalues of an idempotent matrix are either zero or one.
- The following is the relationship between idempotent and involuntary matrices: A square matrix "A" is said to be an idempotent matrix if and only if P = 2A − I is an involuntary matrix.
Read More,
Solved Examples on Idempotent Matrix
Example 1: Verify whether the matrix given below is idempotent or not.
P = \left[\begin{array}{cc} 3 & 2\\ -3 & -2 \end{array}\right]
Solution:
To prove that the given matrix is idempotent, we have to prove that P2 = P.
P^{2} = \left[\begin{array}{cc} 3 & 2\\ -3 & -2 \end{array}\right] \times\left[\begin{array}{cc} 3 & 2\\ -3 & -2 \end{array}\right]
P^{2} = \left[\begin{array}{cc} 9-6 & 6-4\\ -9+6 & -6+4 \end{array}\right]
P^{2} = \left[\begin{array}{cc} 3 & 2\\ -3 & -2 \end{array}\right] = P
Hence, verified.
So, the given matrix P is an idempotent matrix.
Example 2: Verify whether the matrix given below is idempotent or not.
B = \left[\begin{array}{ccc} 2 & -2 & -4\\ -1 & 3 & 4\\ 1 & -2 & -3 \end{array}\right]
Solution:
To prove that the given matrix is idempotent, we have to prove that B2 = B.
B^{2} = \left[\begin{array}{ccc} 2 & -2 & -4\\ -1 & 3 & 4\\ 1 & -2 & -3 \end{array}\right] \times\left[\begin{array}{ccc} 2 & -2 & -4\\ -1 & 3 & 4\\ 1 & -2 & -3 \end{array}\right]
B^{2} = \left[\begin{array}{ccc} (4+2-4) & (-4-6+8) & (-8-8+12)\\ (-2-3+4) & (2+9-8) & (4+12-12)\\ (2+2-3) & (-2-6+6) & (-4-8+9) \end{array}\right]
B^{2} = \left[\begin{array}{ccc} 2 & -2 & -4\\ -1 & 3 & 4\\ 1 & -2 & -3 \end{array}\right]= B
Hence, verified.
So, the given matrix B is an idempotent matrix.
Example 3: Give an example of an idempotent matrix of order 2 × 2.
Solution:
We know that a matrix A = \left[\begin{array}{cc} a & b\\ c & d \end{array}\right] is said to be an idempotent matrix, if bc = a − a2 and d = 1 − a.
Let us consider that a = 5
We have, d = 1 − a
d = 1 − 5 = −4
bc = a − a2
bc = 5 − 25 = −20
Now, let b = 4 and c = −5
So, the matrix is A = \left[\begin{array}{cc} 5 & 4\\ -5 & -4 \end{array}\right]
Example 4: Prove that an identity matrix is an idempotent matrix.
Solution:
To prove that the given matrix is idempotent, we have to prove that I2 = I.
Let us consider an identity matrix of order 2 × 2, i.e., I = \left[\begin{array}{cc} 1 & 0\\ 0 & 1 \end{array}\right]
I^{2} = \left[\begin{array}{cc} 1 & 0\\ 0 & 1 \end{array}\right]\times\left[\begin{array}{cc} 1 & 0\\ 0 & 1 \end{array}\right]
I^{2} = \left[\begin{array}{cc} (1\times1+0\times0) & (1\times0+0\times1)\\ (0\times1+1\times0) & (0\times0+1\times1) \end{array}\right]
I^{2} = \left[\begin{array}{cc} 1 & 0\\ 0 & 1 \end{array}\right] = I
Hence, proved.
So, an identity matrix is an idempotent matrix.
Similar Reads
Idempotent Laws Idempotent Laws are fundamental concepts in mathematics, especially in fields like algebra, set theory, and Boolean logic. These laws state that applying a particular operation multiple times to a value yields the same result as applying it just once.In algebra, these laws doesn't apply to both addi
7 min read
Elements of Matrix Elements of the Matrix are the components or entries of the Matrix. These elements could be any variables, numbers, a mix of variables and numbers, or any other kind of special characters as well. The number of elements of a matrix is equal to the product of the number of rows and columns present in
11 min read
Invertible Matrix Invertible matrices are defined as the matrix whose inverse exists. We define a matrix as the arrangement of data in rows and columns, if any matrix has m rows and n columns then the order of the matrix is m à n where m and n represent the number of rows and columns respectively. We define invertibl
12 min read
Determinant of 3Ã3 Matrix A 3 Ã 3 matrix is a square matrix with three rows and three columns, often used to organize numbers in math and related fields. It plays a key role in linear algebra, mainly when calculating the determinantâa single value that provides essential information about the matrix. This article will explai
12 min read
Diagonal Matrix A diagonal matrix is a square matrix in which all of the elements except the principal diagonal elements are zeroes. It is both upper and lower triangular, as all the elements except the main diagonal elements are zeros. This structure simplifies many operations like multiplication and raising matri
8 min read
Adjoint of a Matrix Matrices are fundamental in mathematics and are crucial in various branches such as linear algebra, computer science, and physics. One important concept derived from matrices is the determinant, which is closely related to the adjoint of a matrix.The adjoint (or adjugate) of a matrix is the transpos
13 min read