Inverse Matrix Formula
The Formula
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
Check: AA^{-1} = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} = I.
Notation
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
Worked Examples
Example 1
mediumSolution
- 1 Step 1: \det(A) = 2(3) - 1(5) = 6 - 5 = 1.
- 2 Step 2: Swap a and d, negate b and c: \frac{1}{1}\begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}.
- 3 Step 3: A^{-1} = \begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}.
- 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
Example 2
easyCommon 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 β