Undoing a Matrix
The inverse of a square matrix is the matrix that undoes it: , where is the identity.
A matrix is invertible (or nonsingular) if and only if . Singular matrices () collapse space, destroying information that cannot be restored.
For a matrix, use this formula:
Swap diagonal entries, negate off-diagonal ones, and divide by the determinant. Division by shows why zero determinants have no inverse.
| Property | Rule | Meaning |
|---|---|---|
| Uniqueness | One | Exists uniquely when |
| Double Inverse | Undoing the undoing returns | |
| Product Rule | Order reverses like shoes and socks |
Solving and Pitfalls
The primary use of the inverse is solving linear systems. If and is invertible, multiply by to get:
This gives the unique solution directly, though Gaussian elimination is faster for large systems.
Common Pitfalls to Avoid:
- Not every matrix is invertible. Only matrices with a nonzero determinant have an inverse.
- Do not split products incorrectly. The inverse of a product is , not .
Multiplication is non-commutative, so the undoing steps must happen in the exact reverse sequence.