Inverse Matrix

Introduction

Matrices are essential tools in fields like mathematics, physics, engineering, and computer science. One of the most powerful abilities you’ll learn in linear algebra is how to find an inverse matrix. Similar to how the collective of a number (like 1/2)  untie multiplication, an inverse matrix undoes the actions of matrix multiplication. This is critical when you’re solving systems of equations, simulating transformations in computer graphics, or working with encryption in cryptography.

 

Table of Content

 

 

What Is a Matrix?

A matrix is a rectangular array of numbers arranged in rows and columns. Here’s a quick refresher:

Example (2×2 matrix):

[ a  b ]

[ c  d ]

 

Example (3×3 matrix):

[ a  b  c ]

[ d  e  f ]

[ g  h  i ]

 

You can think of a matrix as a way to organize data—whether it’s coordinates, equations, transformations, or relationships between variables.

 

What Is an Inverse Matrix?

An inverse matrix is a special matrix that reverses what another matrix does. When you multiply a matrix A by its inverse A⁻¹, you get the identity matrix (denoted I), which acts like the number 1 in multiplication. That is:

A × A⁻¹ = A⁻¹ × A = I

 

  • For 2×2 and 3×3 matrices, the identity matrix looks like this:

    • 2×2 identity: [1 0]
      [0 1]

    • 3×3 identity: [1 0 0]
      [0 1 0]
      [0 0 1]

So when someone says a inverse matrix, they mean the matrix that reverses the transformation of A.

 

Requirements for Invertibility

Not every matrix has an inverse. These conditions must be met:

  1. Matrix must be square (same number of rows and columns).

  2. Determinant (det(A)) must not be zero.

The determinant is a scalar value that captures whether a matrix is “invertible.” If det(A) = 0, then A⁻¹ does not exist.

 

Formula for A Inverse Matrix (2×2 Case)

For a 2×2 matrix:

A = [ a  b ]

    [ c  d ]

 

The inverse is given by:

A⁻¹ = (1 / (ad − bc)) × [  d  -b ]

                         [ -c   a ]

 

As long as ad − bc ≠ 0, this formula gives you a inverse matrix quickly and clearly.

Example 1: (2×2 matrix)

A = [ 4  7 ]

    [ 2  6 ]

 

Step 1: Calculate determinant:

4×6 − 7×2 = 24 − 14 = 10

 

Step 2: Apply the inverse formula:

 

A⁻¹ = (1/10) × [  6  -7 ]

                 [ -2   4 ]

 

Which simplifies to:

A⁻¹ = [ 0.6  −0.7 ]

      [ −0.2  0.4 ]

 

What Is the Adjoint Matrix?

The adjoint matrix (or adjoint of a matrix) is crucial for finding inverses of larger matrices (3×3 and beyond). It’s defined as the transpose of the cofactor matrix.

Steps to Compute Adjoint:

  1. Compute the cofactor of each element:

    • Cofactor = (−1)^(row + column) × minor determinant

  2. Form the cofactor matrix.

  3. Transpose that matrix (swap rows and columns). That result is the adjoint matrix.

 

General Formula Using Adjoint Matrix

For any square matrix A:

A⁻¹ = (1 / det(A)) × adj(A)

 

This formula works for matrices of any size, provided you can calculate det(A) and adj(A).

Example 2: (3×3 matrix)

A = [ 1  2  3 ]

    [ 0  1  4 ]

    [ 5  6  0 ]

 

  1. Compute the determinant (expanding along first row):
    det(A) = 1×(1×0 − 4×6) − 2×(0×0 − 4×5) + 3×(0×6 − 1×5)
    = 1×(−24) − 2×(−20) + 3×(−5)
    = −24 + 40 − 15
    = +1

  2. Find the cofactor of each element to build the cofactor matrix:

Minor & Cofactor Matrix:

 

= [  (1×0 − 4×6)     −(0×0 − 4×5)     (0×6 − 1×5)  ]

  [ −(2×0 − 3×6)      (1×0 − 3×5)    −(1×6 − 3×5)  ]

  [  (2×4 − 3×1)     −(1×4 − 3×0)     (1×1 − 2×0)  ]

 

= [   -24              20               -5         ]

  [    18             -15                9         ]

  [     5              -4                1         ]

 

  1. Transpose it (rows ⇄ columns) to get adj(A):

adj(A) = [ −24  18   5 ]

         [ 20   −15 −4 ]

         [ −5   9    1 ]

 

  1. Finally,

A⁻¹ = (1 / 1) × adj(A) = adj(A)  (since det(A)=1)

 

Step-by-Step Summary (3×3 Matrix)

  1. Ensure A is square

  2. Compute det(A)

  3. Build cofactor matrix

  4. Transpose it → adj(A)

  5. Apply formula: A⁻¹ = (1 / det(A)) × adj(A)

 

Real-Life Applications of Inverse Matrix

Inverse matrices are widely used across many fields:

  • Computer Graphics: Undo transformations like scaling, rotation, and translation

  • Engineering: Solve linear systems in circuit analysis

  • Cryptography: Use matrix inverses to encrypt/decrypt information

  • Economics & Data Science: Solve multiple simultaneous equations—for forecasting, regression, optimization

 

Common Mistakes to Avoid

  • Attempting to find an inverse when det(A) = 0

  • Forgetting to transpose the cofactor matrix

  • Confusing matrix inverses with numerical reciprocals

 

Conclusion

The inverse matrix is a versatile and powerful tool in maths and real-world applications. Whether you're reversing transformations in graphics, cracking cryptographic codes, or solving network equations, knowing how to find a inverse matrix is invaluable.

Remember:

  • Only invertible matrices (square and det(A) ≠ 0) have inverses

  • 2×2 inverses have a simple formula

  • Larger matrices require calculation of the adjoint of a matrix

  • Always double-check your determinant and transpose steps

With practice and application, matrix inverses will become one of your most trusted problem-solving tools. Let me know if you’d like MCQs, diagrams, or worksheets to go with this!

 

Related Links 

Multiplication & Division for Grade 5 [+12 Worksheets] - Boost your Grade 5 math skills with engaging multiplication and division worksheets for smart practice and stronger problem-solving confidence.

Addition and Subtraction for Class 5 [12 Worksheets] - Sharpen your Class 5 math skills with fun and focused addition and subtraction worksheets for quick practice and confident problem-solving.

 

FAQs

1. What is called inverse matrix?

An inverse matrix is a matrix that reverses another matrix when multiplied together, producing the identity matrix (A⁻¹ such that A × A⁻¹ = I).

2. What is the inverse of a 3×3 matrix?

The inverse of a 3×3 matrix is found using:

A⁻¹ = (1 / det(A)) × adj(A)

where adj(A) is the transpose of the cofactor matrix, and det(A) is the determinant.

3. What is the inverse of a 2×2 matrix?

For:

A = [ a  b ]

    [ c  d ]

 

If ad − bc ≠ 0, then:

A⁻¹ = (1 / (ad − bc)) × [ d  −b ]

                          [ −c  a ]

 

4. How to find an inverse of a matrix?

  • Confirm matrix is square and det(A) ≠ 0

  • For 2×2: apply direct formula

  • For 3×3 (or larger): compute determinant, build cofactor matrix, transpose it to get adjoint, then apply general formula

5. What is the formula of inverse?

The general formula is:

A⁻¹ = (1 / det(A)) × adj(A)

This works for any invertible square matrix.

Dive deeper into matrix operations and build a strong foundation in linear algebra with Orchids The International School.

Share
Loading Footer...