

Inverse of Matrix
The inverse of matrix acts similarly in matrix algebra as the reciprocal of number takes in the division in general Mathematics. Just as we can solve a simple mathematical equation 3x = 6 for x by multiplying both sides by the reciprocal.
$3x = 6 3^{-1} 3x = 3^{-1}6 x= \dfrac{6}{3}= 2$
Similarly, we can solve matrix equations like P x = q for the vector x by multiplying both the sides by the inverse of matrix P.
$Px = q P^{-1} Px = P^{-1}q x= P^{-1} q$
Here, we will look at the matrix inverse using minors, cofactors, and adjugate.
Inverse of Matrix Formula
The inverse of a matrix is calculated by determining the determinant and adjoint of a given matrix. Adjugate or adjoint of the matrix is given by the transpose of the cofactors of a given matrix. The formula to find the inverse of matrix is given by:
$A^{-1} = \dfrac{adj(A)}{|A|}; |A| \neq 0$
What is the Matrix of Cofactors?
Let us consider A = [a]n as the square matrix of order n. Let Apq represent the cofactor of the elements whose indices are (p,q).
The matrix of cofactors A is the square matrix for order N.
\[C = \begin{bmatrix} A_{11}& A_{12} & . & . & . & A_{1n}\\ A_{21}& A_{22 }& . & . & . & A_{2n} \\ . & . & . & . & . & .\\ . & . & . & . & . & .\\ . & . & . & . & . & .\\ A_{n1} & A_{n2} & . & . & . & A_{nn} \end{bmatrix}\]
The matrix of cofactors is also known as the cofactor matrix or comatrix.
Matrix of Cofactors Formula
In Mathematics, a cofactor is a number used to find the inverse of a matrix, adjoined. The cofactor is defined as the number that is obtained when the rows or columns of selected elements in the given matrix are removed, which is just a numerical grid in the form of a square or a rectangle.
The cofactors are always introduced by a positive (+) or negative (-) symbol. Let us consider X as n x n matrix and let Mij as (n - 1) x (n - 1) matrix obtained by removing the ith row and jth column. Then det (Mij is known as the minor of aij. The cofactor Aij of aij is defined in terms of the minor is: Aij = (-1)i + j det (Mij}).
Matrix of Cofactors Example
Let $A = \begin{bmatrix} 2 & 6 & -1 \\ 0 & 1 & 4 \\ 3 & -2 & -6 \end{bmatrix}$
Let us consider $M_{ij}$ as the minor of elements of $i^{th}$ row and $j^{th}$ column. Accordingly,
$M_{32} = \begin{bmatrix}2 & -1 \\ 0 & 4 \\ \end{bmatrix}$
Therefore, the minor of $A_{32}$ is the determinant of the above 2 by 2 matrix.
As the given matrix is triangular, the determinant is the product of diagonals.
Accordingly $(2 \times 4)(-1 \times 0) = (8 - 0) = 8$
Applying the Matrix of Cofactors formula, we get:
$A_{32} = (-1)^{3+2} (8) = -8$
Adjugate Matrix
Let X = [aij] be a square matrix of order n. The adjugate of matrix X (also known as adjoint of Matrix X) is defined as the transpose of the cofactor matrix X. It is represented by adj X. An adjugate matrix is also known as an adjoint matrix.
To determine the adjugate of a matrix, first, find the cofactor of the given matrix. Then find the transpose of the cofactors of the matrix.
Adjugate Matrix Example
Find the adjoint of Matrix,
$A = \begin{bmatrix}3 & 1 & -1 \\ 2 & -2 & 0 \\ 1 & 2 & -1\end{bmatrix}$
Cofactor of 3 $= A_{11} = \begin{vmatrix}-2 & 0\\ 2 & -1\end{vmatrix} = 2$
Cofactor of 1 $= A_{12} = - \begin{vmatrix}2 & 0\\ 1 & -1\end{vmatrix} = 2$
Cofactor of -1 $= A_{13} = \begin{vmatrix}2 & -2\\ 1 & 2\end{vmatrix} = 6$
Cofactor of 2 $= A_{21} = - \begin{vmatrix}1 & -1\\ 2 & -1\end{vmatrix} = -1$
Cofactor of -2 $= A_{22} = \begin{vmatrix}3 & -1\\ 1 & -1\end{vmatrix} = -2$
Cofactor of 0 $= A_{23} = - \begin{vmatrix}3 & 1\\ 1 & 2\end{vmatrix} = -5$
Cofactor of 1 $= A_{31} = \begin{vmatrix}1 & -1\\ -2 & 0\end{vmatrix} = -2$
Cofactor of 2 $= A_{32} = - \begin{vmatrix}3 & -1\\ 2 & 0\end{vmatrix} = -2$
Cofactor of -1 $= A_{33} = \begin{vmatrix}3 & 1\\ 2 & -2\end{vmatrix} = -8$
$\therefore$ The cofactor of matrix $A$ is $A_{ij} = \begin{vmatrix}2 & 2 & 6\\ -1 & -2 & -5\\-2 & -2 & -8\end{vmatrix}$
Let us now find the transpose of $A_{ij}$
$Adj A = (A_{ij})^T$
$ \begin{vmatrix}2 & -1 & -2\\ 2 & -2 & -2\\6 & -5 & -8\end{vmatrix}$
Hence, the adjoint of matrix $A = \begin{vmatrix}2 & -1 & -2\\ 2 & -2 & -2\\6 & -5 & -8\end{vmatrix}$
Minor of Matrices
In a square matrix, each element has its minor. The minor is defined as the value that is received from the determinants of a square matrix by deleting out a column and a row corresponding to the element of a matrix.
Given a square matrix X, by minor of an element we mean the value of the determinant is obtained by deleting the ith row and jth column of a matrix. It is represented by Mij.
To find the minor of a square matrix, we have to remove a row and column one by one at a time and calculate their determinant, until all the minors are calculated. Following are the steps to calculate the minor from a matrix.
Hide ith row and jth column individually from a given matrix, where i refers to m and j refers to n that is the total number of rows and columns in matrices.
Calculate the value of the determinant of the matrix after hiding the rows and columns from Step 1.
Minors of Matrix Example
Let us learn to find minors of 3 x 3 matrix below:
Find the minors of matrix $A = \begin{bmatrix}a & b & c\\ d & e & f\\ g & h & i\end{bmatrix}$
$M_{11} = \begin{bmatrix}e & f\\ h & i \end{bmatrix} = (ei - hf)$
$M_{12} = \begin{bmatrix}d & f\\ g & i \end{bmatrix} = (di - ff)$
$M_{13} = \begin{bmatrix}d & e\\ g & h \end{bmatrix} = (dh - eg)$
$M_{21} = \begin{bmatrix}b & c\\ h & i \end{bmatrix} = (bi - ch)$
$M_{22} = \begin{bmatrix}a & c\\ g & i \end{bmatrix} = (ai - cg)$
$M_{23} = \begin{bmatrix}a & b\\ g & h \end{bmatrix} = (ah - bg)$
$M_{31} = \begin{bmatrix}b & c\\ e & f \end{bmatrix} = (bf - ce)$
$M_{32} = \begin{bmatrix}a & c\\ d & f \end{bmatrix} = (af - cd)$
$M_{33} = \begin{bmatrix}a & b\\ d & e \end{bmatrix} = (ae - bd)$
Finding Inverse of Matrix Using Minors, Cofactors, and Adjugate?
Following are the steps to finding the inverse of the matrix using minors, cofactors, and adjugate.
The first step to finding the inverse of the matrix is to determine the matrix of minors.
The second step is to transform the given matrix into a matrix of cofactors.
The third step is to find the adjoint of the matrix.
At the end, multiply by 1/Determinant.
Inverse of Matrix Using Minors, Cofactors, and Adjugate Example
Let us learn to find inverse of matrix using minors, cofactors and adjugate with an example:
1. Find the inverse of matrix
$X = \begin{bmatrix}3 & 1 & 2\\ 2 & 1 & -2\\0 & 1 & 1 \end{bmatrix}$
Solution:
Step 1: To find the inverse of the matrix X, we will first find the matrix of minors.
Matrix of Minors $=\begin{bmatrix}3 & 2 & 2\\ -1 & 3 & 3\\-4 & -10 & 1 \end{bmatrix}$
Step 2: In this step, we will find the cofactors of the above matrix of minor
Cofactors of Matrix of Minor $ - \begin{bmatrix}3 & 2 & 2\\ -1 & 3 & 3\\-4 & -10 & 1 \end{bmatrix} \times \begin{bmatrix}+ & - & +\\ - & + & -\\+ & - & + \end{bmatrix} = \begin{bmatrix}3 & -2 & 2\\ 1 & 3 & -3\\-4 & 10 & 1 \end{bmatrix}$
Step 3: Now, we will find the adjugate or adjoint of the above matrix by swapping the position of elements diagonally such that:
Adjoint of Cofactor $= \begin{bmatrix}3 & 1 & 4\\ -2 & 3 & 10\\2 & -3 & 1 \end{bmatrix}$
Step 4: Now, we will find the determinants of original matrix X using the following determinants formula:
$\text{det} \begin{bmatrix}a & b & c\\ d & e & f\\g & h & i \end{bmatrix} = a \cdot \text{det} \begin{bmatrix}e & f\\ h & i\end{bmatrix} - b \cdot \text{det} \begin{bmatrix}d & f\\ g & i\end{bmatrix} + c \cdot \text{det} \begin{bmatrix}d & e\\ g & h \end{bmatrix}$
$\text{det} \begin{bmatrix}3 & 1 & 2\\ 2 & 1 & -2\\0 & 1 & 1 \end{bmatrix} = 3 \cdot \text{det} \begin{bmatrix}1 & -2\\ 1 & 1\end{bmatrix} - (1) \cdot \text{det} \begin{bmatrix}2 & -2\\ 0 & 1\end{bmatrix} + 2 \cdot \text{det} \begin{bmatrix}2 & 1\\ 0 & 1 \end{bmatrix}$
$\Rightarrow 3 [1 - (- 2)] -1[2 - (-0)] + 2 [2 -0]$
$\Rightarrow 3(1 + 2) -1(2+ 0) + 2 (1)$
$\Rightarrow 3(3) -1(2) + 2$
$\Rightarrow 9 -2 + 2$
$\Rightarrow 11$
Determinant $= 11$
Step 5: Now, we will multiply the adjoint by 1/Determinant to get the inverse of the original matrix X.
$X^{-1} = \begin{bmatrix}3 & 1 & -4\\ -2 & 3 & 10\\2 & -3 & 1 \end{bmatrix}$
$X^{-1} = \begin{bmatrix}\dfrac{3}{11} &\dfrac{1}{11} & \dfrac{-4}{11}\\ \dfrac{-2}{11} & \dfrac{3}{11} & \dfrac{10}{11}\\\dfrac{2}{11} & \dfrac{-3}{11} & \dfrac{1}{11} \end{bmatrix}$
Did You Know?
19th Century English Mathematician James Sylvester introduced the term Matrix.
Algebraic aspects of Matrix were developed in two papers in the 1850s by Arthur Cayley.
You can easily find the inverse of Matrix using the formula $A^{-1} = \dfrac{adj(A)}{|A|}; |A| \neq 0$.
FAQs on Inverse of a Matrix - Using Minors, Cofactors and Adjugate
1. What are the main steps to find the inverse of a matrix using the adjugate method?
Finding the inverse of a matrix using this method involves a clear, four-step process:
- Step 1: Calculate the determinant of the matrix. If the determinant is zero, the inverse does not exist.
- Step 2: Compute the matrix of minors for each element.
- Step 3: Convert the matrix of minors into the matrix of cofactors by applying the checkerboard pattern of signs.
- Step 4: Find the adjugate (or adjoint) of the matrix by transposing the cofactor matrix. Finally, multiply the adjugate matrix by the reciprocal of the determinant.
2. How do you calculate the minor and cofactor for an element in a matrix?
The minor of an element, denoted as Mᵢⱼ, is the determinant of the sub-matrix that remains after deleting the i-th row and j-th column. The cofactor, Cᵢⱼ, is calculated from the minor using the formula Cᵢⱼ = (-1)ⁱ⁺ʲ Mᵢⱼ. This means the cofactor is simply the minor with a specific sign (+ or -) depending on its position in the matrix.
3. What is the difference between the cofactor matrix and the adjugate of a matrix?
The main difference lies in their orientation. The cofactor matrix is created by replacing each element of the original matrix with its corresponding cofactor. The adjugate matrix, often written as adj(A), is the transpose of the cofactor matrix. In simple terms, you find the cofactor matrix first, and then you swap its rows and columns to get the adjugate.
4. What is the formula for the inverse of a matrix using its adjugate?
The formula to find the inverse of a square matrix A is: A⁻¹ = (1/|A|) * adj(A). In this formula:
- A⁻¹ is the inverse of the matrix.
- |A| is the determinant of the matrix, which must not be zero.
- adj(A) is the adjugate (or adjoint) of the matrix.
5. Why must the determinant of a matrix be non-zero for its inverse to exist?
The determinant must be non-zero because it appears in the denominator of the inverse formula, A⁻¹ = (1/|A|) * adj(A). If the determinant |A| were zero, the expression would involve division by zero, which is mathematically undefined. A matrix with a determinant of zero is called a singular matrix, and it does not have an inverse.
6. How do you find the inverse of a simple 2x2 matrix using this method?
For a 2x2 matrix A = [[a, b], [c, d]], there is a shortcut. The determinant is |A| = ad - bc. The adjugate is found by swapping the diagonal elements (a and d) and changing the signs of the off-diagonal elements (b and c). So, adj(A) = [[d, -b], [-c, a]]. The inverse is then A⁻¹ = (1/(ad-bc)) * [[d, -b], [-c, a]].
7. What are the detailed steps for finding the inverse of a 3x3 matrix?
To find the inverse of a 3x3 matrix as per the CBSE syllabus, you must follow these steps meticulously:
- First, calculate the determinant of the 3x3 matrix. If it is 0, you must state that the inverse does not exist and stop.
- Next, calculate all nine minors by finding the determinant of the 2x2 sub-matrix for each element.
- Then, form the matrix of cofactors by applying the sign pattern [[+, -, +], [-, +, -], [+, -, +]] to the matrix of minors.
- After that, find the adjugate matrix by taking the transpose of the cofactor matrix (interchange rows and columns).
- Finally, multiply the entire adjugate matrix by 1/|A| (the reciprocal of the determinant) to get the inverse.
8. How is the concept of a matrix inverse used to solve a system of linear equations?
A system of linear equations can be represented in the matrix form AX = B, where A is the matrix of coefficients, X is the column matrix of variables (x, y, z), and B is the column matrix of constants. To solve for the variables in X, you can pre-multiply both sides by the inverse of A. This gives the solution X = A⁻¹B. This method is a powerful application of matrix inverses in algebra.
9. Can a non-square matrix have an inverse?
No, a non-square matrix cannot have an inverse in the context of this method. The concepts of the determinant, cofactors, and the adjugate are defined exclusively for square matrices. Since the calculation of the inverse depends entirely on these properties, only a square matrix can be invertible.

















