Inverse Matrix Method

There are two Inverse matrix methods to find matrix inverse:

  1. Determinant Method
  2. Elementary Transformation Method

Method 1: Determinant Method

The most important method for finding the matrix inverse is using a determinant.

The inverse matrix is also found using the following equation:

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

where,

  • adj(A) is the adjoint of a matrix A, and
  • det(A) is the determinant of a matrix A.

For finding the adjoint of a matrix A the cofactor matrix of A is required. Then adjoint (A) is the transpose of the Cofactor matrix of A i.e.,

adj (A) = [Cij]T

  • For the cofactor of a matrix i.e., Cij, we can use the following formula:

Cij = (-1)i+j det (Mij)

where Mij refers to the (i, j)th minor matrix when ith row and jth column is removed.

Method 2: Elementary Transformation Method

Follow the steps below to find an Inverse matrix by elementary transformation method.

Step 1 : Write the given matrix as A = IA, where I is the identity matrix of the order same as A.

Step 2 : Use the sequence of either row operations or column operations till the identity matrix is achieved on the LHS also use similar elementary operations on the RHS such that we get I = BA. Thus, the matrix B on RHS is the inverse of matrix A.

Step 3 : Make sure we either use Row Operation or Column Operation while performing elementary operations.

We can easily find the inverse of the 2 × 2 Matrix using the elementary operation. Let’s understand this with the help of an example.

Example: Find the inverse of the 2 × 2, A =  [Tex]\begin{bmatrix}2 & 1\\ 1 & 2\end{bmatrix}[/Tex] using the elementary operation.

Solution:

Given:

A = IA

[Tex]\begin{bmatrix}2 & 1\\ 1 & 2\end{bmatrix}~=~\begin{bmatrix}1 & 0\\ 0 & 1\end{bmatrix}~×~\begin{bmatrix}2 & 1\\ 1 & 2\end{bmatrix}[/Tex]

Now, R1 ⇢ R1/2

[Tex]\begin{bmatrix}1 & 1/2\\ 1 & 2\end{bmatrix}~=~\begin{bmatrix}1/2 & 0\\ 0 & 1\end{bmatrix}~×~A [/Tex]

R2 ⇢ R2 – R1

[Tex]\begin{bmatrix}1 & 1/2\\ 0 & 3/2\end{bmatrix}~=~\begin{bmatrix}1/2 & 0\\ -1/2 & 1\end{bmatrix}~×~A [/Tex]

R2 ⇢ R2 × 2/3

[Tex]\begin{bmatrix}1 & 1/2\\ 0 & 1\end{bmatrix}~=~\begin{bmatrix}1/2 & 0\\-1/3 & 2/3\end{bmatrix}~×~A [/Tex]

R1 ⇢ R1 – R2/2

[Tex]\begin{bmatrix}1 & 0\\ 0 & 1\end{bmatrix}~=~\begin{bmatrix}2/3 & -1/6\\ -1/3 & 2/3\end{bmatrix}~×~A [/Tex]

Thus, the inverse of the matrix A = [Tex] \begin{bmatrix}2 & 1\\ 1 & 2\end{bmatrix}   [/Tex] is

A-1[Tex]\begin{bmatrix}2/3 & -1/6\\ -1/3 & 2/3\end{bmatrix} [/Tex]

Inverse of a Matrix

The inverse of Matrix is the matrix that on multiplying with the original matrix results in an identity matrix. For any matrix A, its inverse is denoted as A-1.

Let’s learn about the Matrix Inverse in detail, including its definition, formula, methods on how to find the inverse of a matrix, and examples.

Table of Content

  • Matrix Inverse
  • Terms Related to Matrix Inverse
  • How to Find Inverse of Matrix?
  • Inverse of a Matrix Formula
  • Inverse Matrix Method
  • Inverse of 2×2 Matrix Example
  • Determinant of Inverse Matrix
  • Properties of Inverse of Matrix
  • Matrix Inverse Solved Examples


Similar Reads

Matrix Inverse

The inverse of a matrix is another matrix that, when multiplied by the given matrix, yields the multiplicative identity....

Terms Related to Matrix Inverse

The terminology listed below can help you grasp the inverse of a matrix more clearly and easily....

How to Find Inverse of Matrix?

There are Two-ways to find the Inverse of a matrix in mathematics:...

Inverse of a Matrix Formula

The inverse of matrix A, that is A-1 is calculated using the inverse of matrix formula, which involves dividing the adjoint of a matrix by its determinant....

Inverse Matrix Method

There are two Inverse matrix methods to find matrix inverse:...

Inverse of 2×2 Matrix Example

Inverse of the 2×2 matrix can also be calculated using the shortcut method apart from the method discussed above. Let’s consider an example to understand the shortcut method to calculate the inverse of 2 × 2 Matrix....

Determinant of Inverse Matrix

Determinant of inverse matrix is the reciprocal of the determinant of the original matrix. i.e.,...

Properties of Inverse of Matrix

Inverse matrix has the following properties:...

Matrix Inverse Solved Examples

Let’s solve some example questions on Inverse of Matrix....

Frequently Asked Questions on Inverse of Matrix

What is Inverse of Matrix?...