Adjoint and Inverse of Matrix: Overview, Questions, Preparation

Determinant of a Matrix 2025 ( Maths Determinants )

Aadit Singh Uppal
Updated on Aug 19, 2025 12:14 IST

By Aadit Singh Uppal

While studying the chapter determinants, you will come across a topic called adjoint and inverse of matrices. This is an important topic for JEE MAINS that is used to deal with calculation of values in a square matrix. Adjoint is calculated by computing the cofactors of elements in the matrix and then taking the transpose of the final matrix obtained. Similarly, inverse of a matrix is obtained by dividing the adjoint with determinant. This article will help you learn the basic concepts of adjoint and inverse and how are they related to each other.

Table of content
  • What is Adjoint of a Matrix?
  • How To find Adjoint of a 2 x 2 matrix
  • Key Terms for Determinants
  • Solved Example
  • Inverse of a Matrix
  • Algorithm to find A-1 by Determinant method
Maths Determinants Logo

What is Adjoint of a Matrix?

Adjoint, also known as adjugate, is simply the transpose of its cofactor matrice. Let us understand this through a mathematical example.

Suppose there is a square matrix A = [ a i j ]  of order n.

Adjoint of A can be represented as:

Adj. A = [ A i j ] T

Where A i j = cofactor of a i j in A.

If A = [ a i j ] is a square matrix and B = [ A i j ] (where A i j  is the cofactor of the elements in matrix A), then the transpose BT of matrix B is called adjoint of matrix A and it is denoted by “adj. A.”

For example, let A = [ a 1 1 a 1 2 a 1 3 a 2 1 a 2 2 a 2 3 a 3 1 a 3 2 a 3 3 ] , then

Adj. A = [ A 1 1 A 1 2 A 1 3 A 2 1 A 2 2 A 2 3 A 3 1 A 3 2 A 3 3 ] T = [ A 1 1 A 2 1 A 3 1 A 1 2 A 2 2 A 3 2 A 1 3 A 2 3 A 3 3 ]

Maths Determinants Logo

How To find Adjoint of a 2 x 2 matrix

Here are the steps that you need to follow in order to find the adjoint of a matrice:

  • Initially, find the minor for each element in the matrice.
  • Next, find the cofactor of each element using the formula Cij​=(−1)i+j⋅Mij​.
  • Then, place all the cofactors in their respective positions in the matrice.
  • Last step is to transpose the cofactor matrice.
  • Final matrice obtained is the adjoint matrice.
Maths Determinants Logo

Key Terms for Determinants

Some crucial concepts of this chapter Determinants are given below for reference which the candidates need to be familiar with:

  1. Minors

Minors of an element is referred to the determinant obtained by deleting its ith row and jth column in which lies.

Minor of  a i j  can be denoted by  M i j

Where,

I = row

J = column

  1. Cofactors

A cofactor is a concept similar to that of minors, but with a simple difference of a sign. The cofactor of an element can be denoted by the equation:

C i j = ( - 1 ) i + j M i j

Where,  M i j = minor of  a i j

If you want to calculate the cofactor, simply calculate the minor and add the sign factor to compute the result, which will be the cofactor.

 

  1. Area of a Triangle

Area of a triangle ABC whose vertices are A  ( x 1 , y 1 ) ,  B  ( x 2 , y 2 ) , and  C  ( x 3 , y 3 ) can be calculated using the formula:

Δ = 1 2 | x 1 y 1 1 x 2 y 2 1 x 3 y 3 1 |

  • If the area of ABC = 0 , the points are known to be collinear.
  1. Singular matrix

A singular matrix is referred to the square matrix whose determinant is zero. It can be denoted as | A | = 0

 

  1. Non-singular matrix

A non-singular matrix is referred to the square matrix whose determinant is not equal to zero i.e.    0. A square matrix A will be invertible if and only if A is a non-singular matrix.

Maths Determinants Logo

Solved Example

Now, let us solve a question to clear our basic concepts.

Question: Find the adjoint of the given matrix A = [ 3 4 5 2 ] .

Answer: Given, A = [ 3 4 5 2 ]

Let A i j denotes the cofactor of a i j in A = [ a i j ] , then

A 1 1 = (–1) 1+1(2) = 2                                  A 1 2 = (–1) 1+2(5) = –5

A 2 1 = (–1) 2+1(4) = – 4                                A 2 2 = (–1) 2+2(3) = 3      

Hence, adj. A = [ A 1 1 A 2 1 A 1 2 A 2 2 ] = [ 2 4 5 3 ]

Maths Determinants Logo

Inverse of a Matrix

Let there be a square matrice A of order n.

Then, A is considered to be invertible only if there exists another inverse matrix B (having same order as that of A) such that AB = BA = I .

Where,

B = A^-1

I = Identity Matrice

Formula for Inverse of a matrice can be given by:

A−1= adj(A)/ det(A)

Note: A matrice that has an inverse is called non-singular matrice and not every matrice will have an inverse.

Maths Determinants Logo

Algorithm to find A-1 by Determinant method

The procedure mentioned below will help you calculate the inverse of a matrice using the determinant method:

STEP 1: First of all, find the determinant of A i.e. | A | .

STEP 2: If | A | = 0 then, stop the procedure and write “A is a singular matrix hence no inverse”. If | A | =! 0, move further.

STEP 3: Calculate the cofactors of all the elements in matrix A. Formula: Cij​=(−1)i+j⋅Mij​

STEP 4: Arrange the cofactors in their respective positions in the matrice and then transpose the matrice to get adj. A (adjoint of A).

STEP 5: Find the inverse of A by using the equation: A-1 = 1 | A | adj.A.

Now, Let us practice our base concepts through a solved example.

Example: Find the inverse of the matrix [ 2 3 5 4 ] .

Sol: Given, A = [ 2 3 5 4 ] .

Then, | A | = | 2 3 5 4 | = 8 – 15 = –7 0

So, A is non - singular and hence invertible.

Let A i j   denotes the cofactor of a i j in A = [ a i j ] , then

A 1 1 = (–1) 1+1(4) = 4                                    A 1 2 = (–1) 1+2(5) = –5

A 2 1 = (–1) 2+1(3) = – 3                               A 2 2 = (–1) 2+2(2) = 2      

adj. A = [ A 1 1 A 2 1 A 1 2 A 2 2 ] = [ 4 3 5 2 ]

Hence, A-1 = 1 | A | (adj. A) = 1 7 [ 4 3 5 2 ]

qna

Maths Determinants Exam

Student Forum

chatAnything you would want to ask experts?
Write here...