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

Inverse Matrix Explained with Formula, Steps & Examples

Reviewed by:
ffImage
hightlight icon
highlight icon
highlight icon
share icon
copy icon
SearchIcon
widget title icon
Latest Updates

How to Find the Inverse of a Matrix (Stepwise for Students)

The concept of Inverse Matrix plays a key role in mathematics and is widely applicable to both real-life situations and exam scenarios. From solving systems of equations to data science and cryptography, knowing how to find and use the inverse of a matrix is a fundamental Maths tool taught from class 11 onwards. You’ll see the inverse matrix in CBSE, ICSE, JEE, and Olympiad exams—so mastering it is crucial for scoring full marks!


What Is Inverse Matrix?

An inverse matrix is a special type of square matrix that, when multiplied with the original matrix, results in the identity matrix. More formally, if A is a square matrix and there exists another matrix A-1 such that:

A × A-1 = A-1 × A = I

then A-1 is called the inverse of matrix A. The inverse matrix exists only if A is non-singular (its determinant is not zero). You’ll find this concept applied in algebra, physics, and computer graphics (adjugate matrix, row operations, etc).


Key Formula for Inverse Matrix

Here’s the standard formula for finding the inverse of a square matrix A:

Inverse(A) = \( \mathbf{A}^{-1} = \frac{1}{|A|} \times \text{adj}(A) \), provided |A| ≠ 0

For a 2x2 Matrix:

Matrix Inverse Formula
A = [[a, b], [c, d]] \( \mathbf{A}^{-1} = \frac{1}{ad-bc} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix} \), if \(ad-bc \neq 0\)

For a 3x3 Matrix: Use the adjugate (cofactor and transpose), then divide by the determinant.


Cross-Disciplinary Usage

Inverse matrix is not only useful in Maths but also plays an important role in Physics (solving simultaneous equations), Computer Science (image processing, cryptography), and daily logical reasoning. Students preparing for JEE or NEET will see its relevance in various questions on linear algebra and equations.


Step-by-Step Illustration

Example: Find the inverse of A = [[2, 3], [1, 4]]

1. Find the determinant: |A| = (2 × 4) - (3 × 1) = 8 - 3 = 5

2. Write the formula:
A-1 = (1/5) × [[4, -3], [-1, 2]]

3. Calculate each element:
A-1 = [[4/5, -3/5], [-1/5, 2/5]]


You can check your answer by multiplying the original matrix and its inverse to get the identity matrix.


Speed Trick or Vedic Shortcut

Here’s a quick shortcut for inverse of a 2x2 matrix:

  1. Swap the numbers on the main diagonal (top-left & bottom-right).
  2. Change the signs of the other two (off-diagonal) elements.
  3. Divide every element by the determinant.

Example: Matrix [[a, b], [c, d]], Inverse = (1/(ad-bc)) × [[d, -b], [-c, a]]

This shortcut is super helpful for last-minute exam checks! Vedantu’s live classes teach more matrix tricks for competitive exams.


Try These Yourself

  • Find the inverse of A = [[3, 2], [7, 5]] using the shortcut formula.
  • Determine if matrix [[1, 2], [2, 4]] has an inverse.
  • Use elementary row operations to find the inverse of [[2, 1], [5, 3]].

Frequent Errors and Misunderstandings

  • Forgetting that only square matrices (same rows and columns) can have inverses.
  • Not checking the determinant—if it’s zero, the matrix doesn’t have an inverse!
  • Mixing up the order in matrix multiplication. (A × A-1 = I, but A-1 × A = I too, only if square and invertible.)

Relation to Other Concepts

The idea of inverse matrix connects closely with topics such as Determinant, and Matrix Multiplication. Mastering this helps with understanding solutions of systems of equations and advanced linear algebra topics in future chapters. Also, see the Types of Matrices to recognize when an inverse is possible.


Classroom Tip

A helpful way to remember the 2x2 inverse formula: “Swap, Sign, and Divide.” Swap diagonal, change signs of off-diagonal, then divide by determinant. Vedantu’s teachers often use this memory trick in live batches to make exams easy!


We explored Inverse Matrix—from definition, formula, stepwise examples, frequent mistakes, and connection to key Maths concepts. Keep practicing with Vedantu’s expert-curated materials to boost your understanding and score full marks with confidence!


Determinant of a 3x3 Matrix  | Matrix Multiplication |

FAQs on Inverse Matrix Explained with Formula, Steps & Examples

1. What is an inverse matrix and what is the primary condition for it to exist?

An inverse matrix, denoted as A⁻¹, is a special square matrix that, when multiplied by the original matrix A, results in the identity matrix (I). The fundamental relationship is A × A⁻¹ = A⁻¹ × A = I. The single most important condition for an inverse to exist is that the matrix must be non-singular, which means its determinant must not be zero (|A| ≠ 0).

2. What is the general formula used to find the inverse of a matrix?

The standard formula for calculating the inverse of a square matrix A is given by: A⁻¹ = (1/|A|) × adj(A). In this formula, |A| represents the determinant of the matrix, and adj(A) is the adjugate (or adjoint) of the matrix. This formula clearly shows why the inverse is undefined if the determinant is zero.

3. How do you find the inverse of a 2x2 matrix using the shortcut method?

There is a very efficient shortcut for a 2x2 matrix. For a matrix A = [[a, b], [c, d]], the inverse is found using the formula: A⁻¹ = (1 / (ad - bc)) × [[d, -b], [-c, a]]. This method involves three simple steps:
1. Swap the elements on the main diagonal (a and d).
2. Change the signs of the off-diagonal elements (b and c).
3. Divide the new matrix by the determinant (ad - bc).

4. What are the main steps to calculate the inverse of a 3x3 matrix as per the CBSE 2025-26 syllabus?

To find the inverse of a 3x3 matrix, follow this systematic process:

  • Step 1: Calculate the Determinant: Find the determinant of the matrix. If it's zero, the inverse does not exist.
  • Step 2: Find the Matrix of Minors: For each element, calculate the determinant of the 2x2 matrix that remains after removing its row and column.
  • Step 3: Create the Matrix of Cofactors: Apply a checkerboard pattern of signs (+, -, +, etc.) to the matrix of minors.
  • Step 4: Find the Adjugate (Adjoint): Transpose the matrix of cofactors.
  • Step 5: Calculate the Inverse: Multiply the adjugate matrix by the reciprocal of the determinant (1/|A|).

5. What is the role of the adjugate matrix in finding the inverse?

The adjugate of a matrix, written as adj(A), is the transpose of its cofactor matrix. Its role is crucial because it represents a matrix that, when multiplied by the original matrix A, yields a diagonal matrix where every diagonal element is the determinant of A. That is, A × adj(A) = |A| × I. Dividing both sides by |A| directly gives us the formula for the inverse, A⁻¹ = (1/|A|) × adj(A), making the adjugate a necessary intermediate step.

6. Why is a non-zero determinant essential for a matrix to have an inverse?

A non-zero determinant is essential for two reasons. Firstly, from an algebraic perspective, the formula for the inverse, A⁻¹ = (1/|A|) × adj(A), involves division by the determinant. If the determinant |A| is zero, this division is mathematically impossible. Secondly, from a geometric perspective, the determinant represents the scaling factor of a transformation. A zero determinant means the matrix collapses space into a lower dimension (e.g., a 3D space into a plane or a line). This transformation is irreversible, meaning there is no corresponding 'undo' operation, hence no inverse matrix exists.

7. How does the inverse of a matrix fundamentally differ from its transpose?

The inverse and transpose are two completely different concepts. The transpose (Aᵀ) is a structural operation where you simply swap the rows and columns of a matrix; it changes the matrix's orientation. In contrast, the inverse (A⁻¹) is a functional operator that 'undoes' the effect of the original matrix. While the transpose exists for any matrix (square or not), the inverse only exists for non-singular square matrices.

8. Can a non-square matrix have an inverse? Explain why.

No, a non-square matrix cannot have a standard two-sided inverse. The very definition of an inverse requires that A × A⁻¹ = A⁻¹ × A = I, where I is the identity matrix. For both of these products to be defined and equal, the matrices A and A⁻¹ must be square. If A is an m x n matrix, A⁻¹ would have to be an n x m matrix. The product A × A⁻¹ would be an m x m matrix, while A⁻¹ × A would be an n x n matrix. If m ≠ n, these two resulting identity matrices would have different dimensions, which violates the definition.

9. What are some important real-world applications where the concept of an inverse matrix is used?

The inverse matrix is a powerful tool with many practical applications, including:

  • Solving Systems of Linear Equations: It provides a direct method to find the unique solution to a system of equations in the form Ax = b, as x = A⁻¹b.
  • Computer Graphics: Used for 3D transformations like rotating, scaling, and translating objects, and more importantly, reversing those transformations.
  • Cryptography: Employed in ciphers like the Hill cipher to encrypt and decrypt messages by transforming data blocks.
  • Engineering: Applied in structural analysis and electrical circuits to solve for unknown forces or voltages in complex systems.