How to Find Rank of a 3×3 Matrix

The three methods to find rank of a 3×3 Matrix are:

  • Rank by Finding Minors
  • Rank of matrix by Echelon Form
  • Rank of matrix by Normal Form

Let’s discuss each method in detail.

Rank of Matrix by Finding Minors

Steps to find rank of 3×3 matrix by finding minors are given below.

  • Find the determinant of the matrix.
  • If Det(matrix) ≠ 0, then rank(matrix) = 3
  • If Det(matrix) = 0, then rank of matrix is the maximum order of one of the minors with non-zero value.

Example: Find the rank of 3×3 Matrix A = [Tex]\begin{bmatrix} -sin A&-cos A&1\\ cos A&sin A&1\\ 1&1& 0 \end{bmatrix}[/Tex] using minor method.

Solution:

First find the determinant of A

|A| = [Tex]\begin{vmatrix} -sin A&-cos A&1\\ cos A&sin A&1\\ 1&1& 0 \end{vmatrix}[/Tex]

|A| = (-sin A) × [0 -1] + cos A × [0- 1] + 1 × [cos A – sin A]

|A| = sin A – cos A + cos A – sin A

|A| = 0

Since, |A| = 0 we will determine maximum non-zero minor

Let’s take minor

M = [Tex]\begin{vmatrix} -sin A&1\\ 1& 0 \end{vmatrix}[/Tex]

M = (-sin A) × 0 – 1 × 1

M = -1

The maximum non-zero minor is of 2 × 2 .

So, Rank of matrix = 2

Rank of Matrix by Echelon Form

Steps to find rank of 3×3 matrix by finding Echelon form are given below.

  • Convert the matrix into its Echelon form using elementary row or column operations.
  • Then, find the number of non-zero rows in its Echelon form.
  • Rank(matrix) = Number of non-zero rows in Echelon form.

Example: Calculate the rank of matrix B = [Tex]\begin{bmatrix} 1&5&3\\ 2&7&3\\ -3&-6& 1 \end{bmatrix}[/Tex] using Echelon form.

Solution:

B = [Tex]\begin{bmatrix} 1&5&3\\ 2&7&3\\ -3&-6& 1 \end{bmatrix}[/Tex]

R2 ← R2 – 2R1 , R3 ← R3 + 3R1

B = [Tex]\begin{bmatrix} 1&5&3\\ 0&-3&-3\\ 0&9& 10 \end{bmatrix}[/Tex]

R2 ← R2 / (-3)

B = [Tex]\begin{bmatrix} 1&5&3\\ 0&1&1\\ 0&9& 10 \end{bmatrix}[/Tex]

R3 ← R3 – 9R2

B = [Tex]\begin{bmatrix} 1&5&3\\ 0&1&1\\ 0&0& 1 \end{bmatrix}[/Tex]

In the above matrix number of non-zero rows = 3

So, the rank of matrix B = 3

Rank of Matrix by Normal Form

Steps to find rank of 3×3 matrix by finding normal form are given below.

  • Convert the matrix in its normal form using the elementary row and column operation.
  • If [Tex]\begin{bmatrix} I_r & 0\\ 0&0 \end{bmatrix}[/Tex] be the normal form of the matrix.
  • Rank of matrix = r i.e., order of identity matrix.

Example: Calculate the rank of matrix P = [Tex]\begin{bmatrix} -1&-4&3\\ 2&8&-6\\ 3&12& -9 \end{bmatrix}[/Tex] using normal form.

Solution:

P = [Tex]\begin{bmatrix} -1&-4&3\\ 2&8&-6\\ 3&12& -9 \end{bmatrix}[/Tex]

C2← C2 / 4, C3←C3 / (-3)

P = [Tex]\begin{bmatrix} -1&-1&-1\\ 2&2&2\\ 3&3& 3 \end{bmatrix}[/Tex]

R2← R2 / 2, R3←R3 / 3

P = [Tex]\begin{bmatrix} -1&-1&-1\\ 1&1&1\\ 1&1&1 \end{bmatrix}[/Tex]

R2← R2 + R1, R3← R3 + R1

P = [Tex]\begin{bmatrix} -1&-1&-1\\ 0&0&0\\ 0&0&0 \end{bmatrix}[/Tex]

C2← C2 – C1, C3← C3 – C1

P = [Tex]\begin{bmatrix} -1&0&0\\ 0&0&0\\ 0&0&0 \end{bmatrix}[/Tex]

R1← R1 / (-1)

P = [Tex]\begin{bmatrix} 1&0&0\\ 0&0&0\\ 0&0&0 \end{bmatrix}[/Tex]

So, the normal form of matrix P is:

P = [Tex]\begin{bmatrix} I_1&0\\ 0&0\\ \end{bmatrix}[/Tex]

Rank of matrix P = 1

Also Check,

How to Find Rank of a 3×3 Matrix

Rank of a matrix is equal to the number of linear independent rows or columns in it. The rank of the matrix is always less than or equal to the order of the matrix.

In this article we will explore how to find rank of 3×3 matrix in detail along with the basics of the rank of a matrix.

Table of Content

  • What is Rank of a Matrix?
  • How to Find Rank of a 3×3 Matrix
  • Solved Examples on Rank of 3×3 Matrix

Similar Reads

What is Rank of a Matrix?

The rank of a matrix represents the number of non-zero rows or columns of a matrix. In other words, the number of linearly independent rows or columns in a matrix is called as the rank of a matrix. The rank of matrix also represents the number of equations that can be formed using the matrix. The rank of the matrix A is represented as Rank(A) or ρ(A)....

How to Find Rank of a 3×3 Matrix

The three methods to find rank of a 3×3 Matrix are:...

Solved Examples on Rank of 3×3 Matrix

Example 1: Find the rank of 3×3 Matrix A = [Tex]\begin{bmatrix} -1&1&1\\ 2&-2&3\\ 4&6& 8 \end{bmatrix}[/Tex] using minor method....

Practice Problems on Rank of 3×3 Matrix

Q1. Find the rank of 3×3 matrix A = [Tex]\begin{bmatrix} 1&4&-2\\ 5&1&3\\ 7&0&8 \end {bmatrix}[/Tex] using Minor method....

FAQs on Rank of 3×3 Matrix

What is Rank of a Matrix?...

Contact Us