Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Nilpotent Matrix

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Nilpotent Matrices are special types of square matrices, they are special because the product of a Nilpotent Matrix with itself is equal to a null matrix. Let’s take a  square matrix A of order n Ă— n it is considered a nilpotent matrix if Ak = 0. Here k is always less than equal to n. 

In this article, we will learn about the Nilpotent Matrix in detail.

Nilpotent Matrix Definition

A square matrix is said to be a nilpotent matrix if the product of the matrix with itself is equal to a null matrix. In simple words, a square matrix “A” of order “n Ă— n” is said to be nilpotent if “Ak = O,” where “O” is a null matrix of order “n Ă— n” and “k” is a positive integer less than or equal to n. A nilpotent matrix is a square matrix that has an equal number of rows and columns and also it satisfies matrix multiplication. For example, if “P” is a nilpotent matrix of order “2 Ă— 2,” then its square must be a null matrix. If “P” is a nilpotent matrix of order “3 Ă— 3,” then either its square or cube must be a null matrix.

Examples of a Nilpotent Matrix

  • Matrix given below is a nilpotent matrix of order “2 Ă— 2.”

A = \left[\begin{array}{cc} 2 & -4\\ 1 & -2 \end{array}\right]

A^{2} = A × A = \left[\begin{array}{cc} 2 & -4\\ 1 & -2 \end{array}\right] \times \left[\begin{array}{cc} 2 & -4\\ 1 & -2 \end{array}\right]

A^{2} =\left[\begin{array}{cc} (4-4) & (-8+8)\\ (2-2) & (-4+4) \end{array}\right]

A^{2} = \left[\begin{array}{cc} 0 & 0\\ 0 & 0 \end{array}\right] = O

  • Matrix given below is a nilpotent matrix of order “3 Ă— 3.”

B = \left[\begin{array}{ccc} 0 & -4 & 2\\ 0 & 0 & 4\\ 0 & 0 & 0 \end{array}\right]

As the order of the given matrix is “3 Ă— 3,” then either its square or cube of the matrix must be a null matrix if it is nilpotent. Now, let us find its square first.

B^{2} =\left[\begin{array}{ccc} 0 & -4 & 2\\ 0 & 0 & 4\\ 0 & 0 & 0 \end{array}\right]\times\left[\begin{array}{ccc} 0 & -4 & 2\\ 0 & 0 & 4\\ 0 & 0 & 0 \end{array}\right]

B^{2} =\left[\begin{array}{ccc} 0 & 0 & -16\\ 0 & 0 & 0\\ 0 & 0 & 0 \end{array}\right]

Square of the matrix is not a null matrix. So, let us find its cube now.

B^{3} =\left[\begin{array}{ccc} 0 & 0 & -16\\ 0 & 0 & 0\\ 0 & 0 & 0 \end{array}\right]\times\left[\begin{array}{ccc} 0 & 0 & -16\\ 0 & 0 & 0\\ 0 & 0 & 0 \end{array}\right] = \left[\begin{array}{ccc} 0 & 0 & 0\\ 0 & 0 & 0\\ 0 & 0 & 0 \end{array}\right] = O

We can see that cube of the matrix “B” is a null matrix. So, the given matrix “B” is nilpotent.

Properties of a Nilpotent Matrix

Following are some important properties of a nilpotent matrix:

  • A nilpotent matrix is always a square matrix of order “n Ă— n.”
  • Nilpotency index of a nilpotent matrix of order “n Ă— n” is always equal to either n or less than n.
  • Both the trace and the determinant of a nilpotent matrix are always equal to zero.
  • As the determinant of a nilpotent matrix is zero, it is not invertible.
  • Null matrix is the only diagonalizable nilpotent matrix.
  • A nilpotent matrix is a scalar matrix.
  • Any triangular matrices with zeros on the principal diagonal are also nilpotent.
  • Eigenvalues of a nilpotent matrix are always equal to zero.

Also, Check

Solved Examples on Nilpotent Matrix

Example 1: Verify whether the matrix given below is nilpotent or not.

P = \left[\begin{array}{ccc} 1 & -3 & 1\\ 2 & 0 & 2\\ -1 & 3 & -1 \end{array}\right]

Solution:

Order of the given matrix is “3 Ă— 3.” If the given matrix is nilpotent, then either its square or cube of the matrix must be a null matrix.

Now, let us find its square first.

P^{2} = \left[\begin{array}{ccc} 1 & -3 & 1\\ 2 & 0 & 2\\ -1 & 3 & -1 \end{array}\right] \times\left[\begin{array}{ccc} 1 & -3 & 1\\ 2 & 0 & 2\\ -1 & 3 & -1 \end{array}\right]

P^{2} = \left[\begin{array}{ccc} (1-6-1) & (-3+0+3) & (1-6-1)\\ (2+0-2) & (-6+0+6) & (2+0-2)\\ (-1+6+1) & (3+0-3) & (-1+6+1) \end{array}\right]

P^{2} = \left[\begin{array}{ccc} -6 & 0 & -6\\ 0 & 0 & 0\\ 6 & 0 & 6 \end{array}\right]

Square of the matrix is not a null matrix. So, let us find its cube now.

P^{3} = \left[\begin{array}{ccc} 1 & -3 & 1\\ 2 & 0 & 2\\ -1 & 3 & -1 \end{array}\right]\times\left[\begin{array}{ccc} -6 & 0 & -6\\ 0 & 0 & 0\\ 6 & 0 & 6 \end{array}\right]

P^{3}= \left[\begin{array}{ccc} (-6-0+6) & 0 & (-6-0+6)\\ (-12+0+12) & 0 & (-12+0+12)\\ (6+0-6) & 0 & (6+0-6) \end{array}\right]

P^{3}=\left[\begin{array}{ccc} 0 & 0 & 0\\ 0 & 0 & 0\\ 0 & 0 & 0 \end{array}\right] = O

We can see that cube of the matrix “P” is a null matrix. So, the given matrix “P” is nilpotent.

Example 2: Verify whether the matrix given below is nilpotent or not.

M = \left[\begin{array}{cc} 5 & -5\\ 5 & -5 \end{array}\right]

Solution:

The order of the given matrix is “2 Ă— 2.” If the given matrix is nilpotent, then its square must be a null matrix.

M^{2} = \left[\begin{array}{cc} 5 & -5\\ 5 & -5 \end{array}\right]\times\left[\begin{array}{cc} 5 & -5\\ 5 & -5 \end{array}\right]

M^{2} = \left[\begin{array}{cc} (25-25) & (-25+25)\\ (25-25) & (-25+25) \end{array}\right]

M^{2} = \left[\begin{array}{cc} 0 & 0\\ 0 & 0 \end{array}\right] = O

We can see that square of the matrix “M” is a null matrix. So, the given matrix “M” is nilpotent.

Example 3: Determine whether the matrix given below is nilpotent or not.

A = \left[\begin{array}{ccc} 0 & 15 & -17\\ 0 & 0 & 12\\ 0 & 0 & 0 \end{array}\right]

Solution:

Order of the given matrix is “3 Ă— 3.” If the given matrix is nilpotent, then either its square or cube of the matrix must be a null matrix. Now, let us find its square first.

A^{2} = \left[\begin{array}{ccc} 0 & 15 & -17\\ 0 & 0 & 12\\ 0 & 0 & 0 \end{array}\right] \times \left[\begin{array}{ccc} 0 & 15 & -17\\ 0 & 0 & 12\\ 0 & 0 & 0 \end{array}\right]

A^{2} = \left[\begin{array}{ccc} 0 & 0 & 180\\ 0 & 0 & 0\\ 0 & 0 & 0 \end{array}\right]

The square of the matrix is not a null matrix. So, let us find its cube now.

A^{3} = A^{2} × A

A^{3} = \left[\begin{array}{ccc} 0 & 0 & 180\\ 0 & 0 & 0\\ 0 & 0 & 0 \end{array}\right]\times\left[\begin{array}{ccc} 0 & 15 & -17\\ 0 & 0 & 12\\ 0 & 0 & 0 \end{array}\right]

A^{3} = \left[\begin{array}{ccc} 0 & 0 & 0\\ 0 & 0 & 0\\ 0 & 0 & 0 \end{array}\right] = O

We can see that cube of the matrix “A” is a null matrix. So, the given matrix “A” is nilpotent.

FAQs on Nilpotent Matrix

Question 1: What is meant by a nilpotent matrix?

Answer:

A square matrix is said to be a nilpotent matrix if the product of the matrix with itself is equal to a null matrix.

Question 2: Is a nilpotent matrix singular?

Answer:

Yes, a nilpotent matrix is singular, as the determinant of the nilpotent matrix is always zero.

Question 3: What is the order of a Nilpotent Matrix?

Answer:

The order of a nilpotent matrix is determined by the number of rows and columns that it has. In general, a nilpotent matrix has an equal number of rows and columns because it is a square matrix.

Question 4: How to find whether a matrix is nilpotent or not?

Answer:

To find whether the given matrix is nilpotent or not, we have to check if the product of the matrix with itself is a null matrix. For example, if “P” is a nilpotent matrix of order “2 Ă— 2,” then its square must be a null matrix. If “P” is a nilpotent matrix of order “3 Ă— 3,” then either its square or cube must be a null matrix.


My Personal Notes arrow_drop_up
Last Updated : 26 Mar, 2023
Like Article
Save Article
Similar Reads
Related Tutorials