Courses
Courses for Kids
Free study material
Offline Centres
More
Store Icon
Store

Understanding the Adjoint and Inverse of a Matrix

ffImage
hightlight icon
highlight icon
highlight icon
share icon
copy icon
SearchIcon
widget title icon
Latest Updates

widget icon
Start Your JEE Practice Here :
JEE Test Series 2026

Step-by-Step Method to Calculate the Inverse Using the Adjoint

The adjoint and inverse of a matrix are central constructions in linear algebra, particularly for the computation of matrix inverses and the solution of linear systems through matrix methods. These notions are defined analytically using minors, cofactors, determinants, and matrix transposition.


Construction of the Adjoint of a Square Matrix

Let $A = [a_{ij}]_{n \times n}$ be a square matrix of order $n \geq 2$. The process of constructing the adjoint involves the computation of minors, cofactors, and the subsequent transpose of the cofactor matrix.


Minor: The minor $M_{ij}$ of the element $a_{ij}$ is defined as the determinant of the submatrix obtained by deleting the $i$-th row and $j$-th column from $A$. For every $i, j$ with $1 \leq i, j \leq n$, $M_{ij} = \det(A_{ij})$, where $A_{ij}$ denotes the $(n-1) \times (n-1)$ submatrix formed as described.


Cofactor: The cofactor $C_{ij}$ of the element $a_{ij}$ is given by $C_{ij} = (-1)^{i+j} M_{ij}$ for $1 \leq i, j \leq n$. This sign ensures proper expansion by the Laplace formula for determinants.


Consider the matrix $A = \begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \end{bmatrix}$. For $a_{11}$, the minor $M_{11}$ is the determinant of the matrix obtained by removing the first row and first column, which yields $a_{22}$. Thus, $M_{11} = a_{22}$. The cofactor $C_{11} = (+1) \cdot a_{22} = a_{22}$. This holds for all other entries by corresponding deletion and sign multiplication.


Cofactor Matrix: The matrix of cofactors is $C = [C_{ij}]_{n \times n}$, where each entry is the cofactor of the corresponding element in $A$.


Transpose: The transpose of a matrix $B = [b_{ij}]_{n \times n}$, denoted $B^T$, is obtained by interchanging its rows and columns, so that the $(i,j)$-th entry becomes the $(j,i)$-th entry.


Adjoint (or Adjugate): The adjoint of $A$, denoted $\operatorname{adj} A$, is defined as the transpose of the cofactor matrix of $A$. That is,


$\operatorname{adj}A = [C_{ji}]_{n \times n}$, where $C_{ji}$ is the cofactor of $a_{ji}$ in $A$.


Explicit Calculation of the Adjoint for $2 \times 2$ and $3 \times 3$ Matrices

For $A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}$, the minor of $a$ is $d$, and the minor of $b$ is $c$. The cofactors are:


$C_{11}$: $+1 \cdot d = d$


$C_{12}$: $-1 \cdot c = -c$


$C_{21}$: $-1 \cdot b = -b$


$C_{22}$: $+1 \cdot a = a$


The cofactor matrix is $\begin{bmatrix} d & -c \\ -b & a \end{bmatrix}$. Thus, the adjoint is its transpose:


$\operatorname{adj}A = \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}$


For a $3 \times 3$ matrix $A = \begin{bmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{bmatrix}$, the minor $M_{ij}$ is the determinant of the $2 \times 2$ matrix formed by deleting row $i$ and column $j$, the cofactor $C_{ij}$ is $(-1)^{i+j}M_{ij}$, the cofactor matrix is $[C_{ij}]$, and $\operatorname{adj}A = [C_{ji}]$.


Formal Definition and Matrix Equation Involving the Adjoint

Let $A$ be a square matrix of order $n$. The adjoint satisfies the matrix equation:


$A \cdot \operatorname{adj}A = \operatorname{adj}A \cdot A = \det(A) \cdot I_n$,


where $I_n$ denotes the identity matrix of order $n$. This equation holds for all square matrices and forms the algebraic basis for the construction of the inverse of a matrix.


Analytical Formula for the Inverse of a Square Matrix Using the Adjoint

A square matrix $A$ is invertible if and only if $\det(A) \neq 0$. In this case, the inverse of $A$ is given by


$A^{-1} = \dfrac{1}{\det(A)} \operatorname{adj}A$.


If $\det A = 0$, the matrix is singular and the formula does not apply as division by zero is not defined; such a matrix is non-invertible.


Worked Example: Adjoint and Inverse of a $2 \times 2$ Matrix

Given $A = \begin{bmatrix} 4 & 3 \\ 2 & 5 \end{bmatrix}$, compute its adjoint and inverse.


Step 1 (Determinant): Compute $\det A = 4 \times 5 - 3 \times 2 = 20 - 6 = 14$.


Step 2 (Cofactors): Compute the minors and cofactors:


$M_{11} = 5,\quad C_{11} = (+1) \cdot 5 = 5$


$M_{12} = 2, \quad C_{12} = (-1) \cdot 2 = -2$


$M_{21} = 3, \quad C_{21} = (-1) \cdot 3 = -3$


$M_{22} = 4, \quad C_{22} = (+1) \cdot 4 = 4$


Step 3 (Cofactor Matrix): $\begin{bmatrix} 5 & -2 \\ -3 & 4 \end{bmatrix}$


Step 4 (Adjoint): Transpose the cofactor matrix:


$\operatorname{adj} A = \begin{bmatrix} 5 & -3 \\ -2 & 4 \end{bmatrix}$


Step 5 (Inverse): Substitute into the inverse formula:


$A^{-1} = \dfrac{1}{14} \begin{bmatrix} 5 & -3 \\ -2 & 4 \end{bmatrix}$


Final Result: $A^{-1} = \begin{bmatrix} \dfrac{5}{14} & -\dfrac{3}{14} \\ -\dfrac{1}{7} & \dfrac{2}{7} \end{bmatrix}$


For a more detailed discussion on fundamental matrix operations, refer to Matrix Operations.


Worked Example: Adjoint and Inverse of a $3 \times 3$ Matrix

Given $B = \begin{bmatrix} 2 & 1 & 3 \\ 0 & 4 & 5 \\ 1 & 0 & 6 \end{bmatrix}$, find $\operatorname{adj} B$ and $B^{-1}$.


Step 1 (Determinant): Expand by first row:


$\det B = 2 \begin{vmatrix} 4 & 5 \\ 0 & 6 \end{vmatrix} - 1 \begin{vmatrix} 0 & 5 \\ 1 & 6 \end{vmatrix} + 3 \begin{vmatrix} 0 & 4 \\ 1 & 0 \end{vmatrix}$


$= 2(4 \times 6 - 0 \times 5) - 1(0 \times 6 - 1 \times 5) + 3(0 \times 0 - 1 \times 4)$


$= 2(24 - 0) - 1(0 - 5) + 3(0 - 4)$


$= 2(24) + 5 + 3(-4)$


$= 48 + 5 - 12 = 41$


Step 2 (Cofactors): Compute $C_{ij} = (-1)^{i+j} M_{ij}$ for all $i, j$.


$C_{11} = (+1) \times \begin{vmatrix} 4 & 5 \\ 0 & 6 \end{vmatrix} = 1 \times (24-0) = 24$


$C_{12} = (-1) \times \begin{vmatrix} 0 & 5 \\ 1 & 6 \end{vmatrix} = -1 \times (0-5) = 5$


$C_{13} = (+1) \times \begin{vmatrix} 0 & 4 \\ 1 & 0 \end{vmatrix} = 1 \times (0-4) = -4$


$C_{21} = (-1) \times \begin{vmatrix} 1 & 3 \\ 0 & 6 \end{vmatrix} = -1 \times (1\times6-0\times3) = -1 \times 6 = -6$


$C_{22} = (+1) \times \begin{vmatrix} 2 & 3 \\ 1 & 6 \end{vmatrix} = 1 \times (2\times6-3\times1) = 1 \times (12-3) = 9$


$C_{23} = (-1) \times \begin{vmatrix} 2 & 1 \\ 1 & 0 \end{vmatrix} = -1 \times (2\times0-1\times1) = -1 \times (0-1) = 1$


$C_{31} = (+1) \times \begin{vmatrix} 1 & 3 \\ 4 & 5 \end{vmatrix} = 1 \times (1\times5-3\times4) = 1 \times (5-12) = -7$


$C_{32} = (-1) \times \begin{vmatrix} 2 & 3 \\ 0 & 5 \end{vmatrix} = -1 \times (2\times5-3\times0) = -1 \times (10-0) = -10$


$C_{33} = (+1) \times \begin{vmatrix} 2 & 1 \\ 0 & 4 \end{vmatrix} = 1 \times (2\times4-1\times0) = 1 \times (8-0) = 8$


Cofactor matrix:


$\begin{bmatrix} 24 & 5 & -4 \\ -6 & 9 & 1 \\ -7 & -10 & 8 \end{bmatrix}$


Step 3 (Adjoint): Transpose the cofactor matrix:


$\operatorname{adj} B = \begin{bmatrix} 24 & -6 & -7 \\ 5 & 9 & -10 \\ -4 & 1 & 8 \end{bmatrix}$


Step 4 (Inverse): $B^{-1} = \dfrac{1}{41} \operatorname{adj} B = \dfrac{1}{41} \begin{bmatrix} 24 & -6 & -7 \\ 5 & 9 & -10 \\ -4 & 1 & 8 \end{bmatrix}$


For further study on the theory of determinants, see Determinants And Their Properties.


Non-Singularity Condition for Invertibility of a Matrix

A matrix $A$ is invertible if and only if $\det A \neq 0$. In this case, there exists a unique $A^{-1}$ such that $A A^{-1} = A^{-1}A = I_n$. If $\det A = 0$, then $A$ is termed singular, and no inverse exists. This non-singularity is essential for the validity of the formula $A^{-1} = \frac{1}{\det A}\operatorname{adj}A$.


For related content covering how determinant properties affect invertibility, consult Properties Of Determinants.


Summary of the Algebraic Procedure for Adjoint and Inverse

The computation of the adjoint of a matrix involves: (i) calculating all $(n-1)\times(n-1)$ minors, (ii) assigning the correct signs to create the cofactor matrix, and (iii) transposing the cofactor matrix. The inverse of a non-singular square matrix $A$ is given by dividing the adjoint by the determinant of $A$. These procedures are fundamental for topics such as matrix equations, linear systems, and higher algebra.


For comprehensive coverage of matrices and their properties, refer also to Matrices And Determinants.


FAQs on Understanding the Adjoint and Inverse of a Matrix

1. What is the adjoint of a matrix?

Adjoint of a matrix is the transpose of its cofactor matrix. To find the adjoint of a square matrix:

  • Compute the cofactor for each element.
  • Form the cofactor matrix.
  • Take the transpose of the cofactor matrix to get the adjoint.
Adjoint is widely used in calculating the inverse and solving linear equations.

2. How do you find the inverse of a matrix?

The inverse of a square matrix A is denoted A-1 and satisfies A × A-1 = I. To find the inverse of a matrix A (when |A| ≠ 0):

  • Find the adjoint of A (Adj(A)).
  • Calculate the determinant of A (|A|).
  • Use the formula: A-1 = 1/|A| × Adj(A).
The matrix must be non-singular (|A| ≠ 0) for the inverse to exist. This method is exam-relevant for CBSE and other syllabi.

3. What is the condition for the inverse of a matrix to exist?

The inverse of a matrix exists only if the matrix is non-singular, which means:

  • The matrix must be a square matrix (same number of rows and columns).
  • Its determinant must be non-zero (|A| ≠ 0).
If |A| = 0, the matrix has no inverse.

4. How is the adjoint of a 3x3 matrix calculated?

To calculate the adjoint of a 3x3 matrix:

  1. Find the cofactor of each element (use minors and alternating signs).
  2. Form the cofactor matrix from these values.
  3. Transpose this matrix – rows become columns and vice versa.
This process is important for exams and forms the basis for finding inverses of larger matrices.

5. What is the difference between adjoint and inverse of a matrix?

Adjoint and inverse of a matrix are related but different concepts:

  • The adjoint is the transpose of the cofactor matrix.
  • The inverse uses the adjoint: A-1 = 1/|A| × Adj(A).
  • Adjoint always exists for a square matrix, but the inverse exists only if the matrix is non-singular (|A| ≠ 0).
These differences are frequently asked in CBSE and board exams.

6. How do you verify if a matrix has an inverse?

A matrix has an inverse if its determinant is non-zero (|A| ≠ 0). Steps to verify:

  • Check if the matrix is square.
  • Find the determinant. If |A| ≠ 0, the inverse exists.
  • If |A| = 0, the matrix is singular and does not have an inverse.
Always state this condition in your board exam answers for full marks.

7. What are the applications of adjoint and inverse of a matrix?

The adjoint and inverse of a matrix are used in several key areas:

  • Solving systems of linear equations
  • Finding solutions to matrix equations (AX = B)
  • Calculating transformations in geometry
  • Physics and computer graphics
Mastery of these techniques is important for CBSE, Class 12, and other competitive exams.

8. Can every square matrix be inverted using adjoint?

Not every square matrix can be inverted using the adjoint. Only non-singular square matrices (those with |A| ≠ 0) have an inverse that can be found using the adjoint and determinant. Singular matrices (|A| = 0) cannot be inverted.

9. Is the adjoint of a matrix unique?

Yes, the adjoint of a matrix is unique for any given square matrix, as it is derived from a definite process of cofactors and transposing. This holds for all square matrices in the syllabus.

10. What are the steps to find the inverse of a matrix using the adjoint method?

To find the inverse of a matrix using the adjoint method:

  1. Ensure the matrix is square and |A| ≠ 0.
  2. Calculate the cofactor of each element.
  3. Form the cofactor matrix.
  4. Transpose to get the adjoint.
  5. Calculate |A| (the determinant).
  6. Apply A-1 = 1/|A| × Adj(A).
Each step should be shown in exams to get full marks.

11. What happens if the determinant of a matrix is zero?

If the determinant of a matrix is zero (|A| = 0):

  • The matrix is called singular.
  • It does not have an inverse.
  • The adjoint still exists, but you cannot use it to find an inverse.
This property is key in CBSE exam problems.