Inverse Matrix Formula

The Formula

For 2 \times 2: \begin{bmatrix} a & b \\ c & d \end{bmatrix}^{-1} = \frac{1}{ad - bc}\begin{bmatrix} d & -b \\ -c & a \end{bmatrix}, provided ad - bc \neq 0.

When to use: If matrix A represents a transformation (like rotating 30 degrees), then A^{-1} undoes that transformation (rotating -30 degrees). Multiplying by the inverse is the matrix equivalent of dividing. Just as 5 \times \frac{1}{5} = 1, we have A \cdot A^{-1} = I.

Quick Example

A = \begin{bmatrix} 2 & 1 \\ 5 & 3 \end{bmatrix}, \quad A^{-1} = \begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}
Check: AA^{-1} = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} = I.

Notation

A^{-1} denotes the inverse. I is the identity matrix (1s on diagonal, 0s elsewhere). A matrix with no inverse is called singular.

What This Formula Means

The inverse of a square matrix A, written A^{-1}, is the unique matrix such that AA^{-1} = A^{-1}A = I (the identity matrix). A matrix has an inverse if and only if its determinant is nonzero.

If matrix A represents a transformation (like rotating 30 degrees), then A^{-1} undoes that transformation (rotating -30 degrees). Multiplying by the inverse is the matrix equivalent of dividing. Just as 5 \times \frac{1}{5} = 1, we have A \cdot A^{-1} = I.

Formal View

For A \in \mathbb{R}^{n \times n}, A^{-1} exists iff \det(A) \neq 0, and satisfies AA^{-1} = A^{-1}A = I_n. For n = 2: \begin{bmatrix} a & b \\ c & d \end{bmatrix}^{-1} = \frac{1}{ad-bc}\begin{bmatrix} d & -b \\ -c & a \end{bmatrix}. In general, A^{-1} = \frac{1}{\det(A)} \mathrm{adj}(A).

Worked Examples

Example 1

medium
Find the inverse of A = \begin{bmatrix} 2 & 1 \\ 5 & 3 \end{bmatrix}.

Solution

  1. 1
    Step 1: \det(A) = 2(3) - 1(5) = 6 - 5 = 1.
  2. 2
    Step 2: Swap a and d, negate b and c: \frac{1}{1}\begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}.
  3. 3
    Step 3: A^{-1} = \begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}.
  4. 4
    Check: AA^{-1} = \begin{bmatrix} 6-5 & -2+2 \\ 15-15 & -5+6 \end{bmatrix} = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} βœ“

Answer

\begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}
The 2 \times 2 inverse formula swaps the diagonal entries, negates the off-diagonal entries, and divides by the determinant. The check AA^{-1} = I confirms correctness.

Example 2

easy
Find the inverse of \begin{bmatrix} 1 & 2 \\ 0 & 3 \end{bmatrix}.

Common Mistakes

  • Forgetting to check that \det(A) \neq 0 before computing the inverse
  • In the 2 \times 2 formula, swapping a and d is correct, but forgetting to negate b and c
  • Writing A^{-1} = \frac{1}{A}β€”matrix division is not defined; you must compute the actual inverse matrix

Why This Formula Matters

Matrix inverses solve systems of equations (Ax = b \Rightarrow x = A^{-1}b), reverse transformations in computer graphics, and appear in statistics (regression), cryptography, and engineering.

Frequently Asked Questions

What is the Inverse Matrix formula?

The inverse of a square matrix A, written A^{-1}, is the unique matrix such that AA^{-1} = A^{-1}A = I (the identity matrix). A matrix has an inverse if and only if its determinant is nonzero.

How do you use the Inverse Matrix formula?

If matrix A represents a transformation (like rotating 30 degrees), then A^{-1} undoes that transformation (rotating -30 degrees). Multiplying by the inverse is the matrix equivalent of dividing. Just as 5 \times \frac{1}{5} = 1, we have A \cdot A^{-1} = I.

What do the symbols mean in the Inverse Matrix formula?

A^{-1} denotes the inverse. I is the identity matrix (1s on diagonal, 0s elsewhere). A matrix with no inverse is called singular.

Why is the Inverse Matrix formula important in Math?

Matrix inverses solve systems of equations (Ax = b \Rightarrow x = A^{-1}b), reverse transformations in computer graphics, and appear in statistics (regression), cryptography, and engineering.

What do students get wrong about Inverse Matrix?

Not every matrix has an inverse. If \det(A) = 0, the matrix is singular and A^{-1} does not exist. Always check the determinant first.

What should I learn before the Inverse Matrix formula?

Before studying the Inverse Matrix formula, you should understand: determinant, matrix multiplication.

Want the Full Guide?

This formula is covered in depth in our complete guide:

Solving Systems of Equations: Substitution, Elimination, and Matrices β†’