Lesson
11 of 23

💻 Inverse of a Matrix

Understand when a matrix has an inverse, how to find it by the adjoint method, and how inverse matrices help solve simultaneous equations.

The inverse of a matrix plays a role similar to the reciprocal of a number. Just as multiplying a number by its reciprocal gives 1, multiplying a matrix by its inverse gives the identity matrix. This idea becomes especially useful when solving systems of linear equations.


What Is the Inverse of a Matrix?

Let A be a square matrix. If there exists another matrix A^-1 such that:

AA^-1 = A^-1A = I

then A^-1 is called the inverse of A, and I is the identity matrix.

Important condition

A matrix has an inverse only when:

det(A) != 0

If the determinant is zero, the matrix is singular and no inverse exists.


Adjoint or Cofactor Method

One standard method of finding the inverse is the adjoint method.

The working steps are:

  1. find the determinant of the matrix
  2. check that the determinant is non-zero
  3. find the cofactors of all elements
  4. arrange them as the cofactor matrix
  5. transpose the cofactor matrix to obtain the adjoint
  6. use the formula:

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

This is the method usually emphasized in undergraduate applied mathematics notes.


Why Determinant Matters

The determinant tells us whether the matrix can be inverted.

Determinant Value Meaning
det(A) != 0 Inverse exists
det(A) = 0 Inverse does not exist

So before doing a full inverse calculation, the determinant acts as a first check.


Solving Simultaneous Equations with Matrix Inverse

A system of linear equations can be written in matrix form as:

AX = B

where:

  • A is the coefficient matrix
  • X is the column of unknowns
  • B is the constant column

If A^-1 exists, then:

X = A^-1B

This method provides a neat algebraic way to solve simultaneous equations.

Why it is useful

It connects three major topics:

  • matrices
  • determinants
  • linear equation systems

Relation to Cramer's Rule

Another classical method for solving simultaneous equations is Cramer's Rule. It also depends on the determinant being non-zero. In practice:

  • inverse method is useful when the inverse itself is needed
  • Cramer's Rule is often used for direct solution of small systems

Both methods rely on the same core idea: a non-zero determinant gives a unique solution.

Summary Cheat Sheet

Topic Key Point
Inverse of matrix Matrix A^-1 such that AA^-1 = I
Necessary condition det(A) != 0
Main method Cofactor -> adjoint -> inverse formula
Formula A^-1 = (1/det(A)) adj(A)
Equation solving If AX = B, then X = A^-1B
Main exam trap Only square matrices with non-zero determinant have inverses

Lesson Doubts

Ask questions, get expert answers