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

Inverse Matrix Explained with Formula and Methods

Reviewed by:
ffImage
hightlight icon
highlight icon
highlight icon
share icon
copy icon

How to Find the Inverse Matrix Formula Steps and Solved Examples

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 and Methods

1. What is an inverse matrix?

An inverse matrix is a square matrix that, when multiplied by the original matrix, gives the identity matrix. If A is a matrix, its inverse is written as A−1 and satisfies:

A · A−1 = I

where I is the identity matrix. Only square matrices can have inverses, and not all square matrices are invertible.

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

The inverse of a 2×2 matrix is found using a simple formula involving its determinant. For matrix A = [[a, b], [c, d]], the inverse is:

A−1 = (1/(ad − bc)) [[d, −b], [−c, a]]

Steps:

  • Calculate the determinant: det(A) = ad − bc
  • If det(A) ≠ 0, interchange a and d
  • Change the signs of b and c
  • Multiply the matrix by 1/det(A)
If the determinant is 0, the matrix has no inverse.

3. What is the formula for the inverse of a matrix?

The general formula for the inverse of a square matrix is A−1 = (1/det(A)) adj(A), provided the determinant is not zero. Here:

  • det(A) is the determinant of matrix A
  • adj(A) is the adjugate (adjoint) of A
This formula applies to square matrices of any order where det(A) ≠ 0.

4. When does a matrix not have an inverse?

A matrix does not have an inverse when its determinant equals zero. Such a matrix is called a singular matrix. Key conditions:

  • det(A) = 0
  • Rows or columns are linearly dependent
  • Matrix cannot produce the identity matrix through multiplication
If any of these conditions occur, the inverse matrix does not exist.

5. What is the determinant in finding an inverse matrix?

The determinant is a scalar value that determines whether a matrix has an inverse. For a 2×2 matrix [[a, b], [c, d]], the determinant is:

det(A) = ad − bc

If det(A) ≠ 0, the matrix is invertible. If det(A) = 0, the matrix is singular and has no inverse.

6. Can you give an example of finding the inverse of a matrix?

Yes, the inverse of matrix A = [[1, 2], [3, 4]] is calculated using the 2×2 formula.

  • det(A) = (1×4 − 2×3) = 4 − 6 = −2
  • Swap 1 and 4, change signs of 2 and 3
  • Multiply by 1/(−2)
The inverse is:

A−1 = (−1/2) [[4, −2], [−3, 1]]

Which simplifies to [[−2, 1], [3/2, −1/2]].

7. What is the identity matrix in relation to the inverse matrix?

The identity matrix is the matrix obtained when a matrix is multiplied by its inverse. It has 1s on the main diagonal and 0s elsewhere. For example, a 2×2 identity matrix is:

I = [[1, 0], [0, 1]]

If A · A−1 = I, then A−1 is the inverse of A.

8. How do you check if a matrix inverse is correct?

You check a matrix inverse by multiplying the original matrix by its inverse and verifying that the result is the identity matrix. Steps:

  • Compute A · A−1
  • If the result equals I, the inverse is correct
  • If not, recheck your calculations
The product must exactly match the identity matrix of the same order.

9. What is the difference between a singular and non-singular matrix?

A singular matrix has determinant 0 and no inverse, while a non-singular matrix has a non-zero determinant and an inverse. Key differences:

  • Singular: det(A) = 0, inverse does not exist
  • Non-singular: det(A) ≠ 0, inverse exists
Only non-singular matrices are invertible.

10. What are the properties of an inverse matrix?

An inverse matrix follows several important algebraic properties. Key properties include:

  • (A−1)−1 = A
  • (AB)−1 = B−1A−1
  • (AT)−1 = (A−1)T
  • Inverse exists only if det(A) ≠ 0
These properties are widely used in linear algebra and matrix algebra calculations.