Matrix Inverse
Subtopic: Matricies
The inverse of a matrix
Introduction
For numbers, the inverse of
But unlike numbers, not every nonzero matrix has an inverse. A matrix that collapses space (determinant zero) can't be undone—information is lost.
Definition
A square matrix
The inverse is unique when it exists. A matrix without an inverse is called singular.
2×2 Inverse Formula
For a
Swap the diagonal entries, negate the off-diagonal entries, divide by the determinant.
This only works when
Worked Example
Find the inverse of:
Step 1: Compute determinant =
Step 2: Apply formula:
Step 3: Verify:
General Method: Gauss-Jordan
For larger matrices, augment
Write the augmented matrix
[[A,I]] Apply row operations to transform the left side to
I The right side becomes
A(-1)
If at any point a row of the left side becomes all zeros, A is singular (no inverse).
When Does the Inverse Exist?
A square matrix
det(A)≠0 A has full rank (rank=n for ann×n matrix)The columns of
A are linearly independentThe rows of
A are linearly independentThe null space of
A is{0} 0 is not an eigenvalue ofA A*x=b has a unique solution for everyb
Key Properties
(A(-1))(−1)=A (A*B)(−1)=B(-1)*A(-1) (reverse order!)(AT)(−1)=(A(−1))T (c*A)(−1)=1/c*A(−1) det(A(−1))=1/det(A)
Solving Linear Systems
If
However, computing
Geometric Interpretation
If
Rotation by
θ has inverse rotation by−θ Scaling by
2 has inverse scaling by1/2 A projection (collapsing a dimension) has no inverse — you cannot recover the lost information
Applications
In cryptography, encryption matrices must be invertible to allow decryption.
In computer graphics, applying a transformation then its inverse returns to the original state.
In control theory, system invertibility determines whether inputs can achieve arbitrary outputs.
Summary
The inverse