Undoing a Matrix
The inverse of a square matrix is the matrix that "undoes" it: , the identity. Not every matrix has one — a matrix with an inverse is invertible (or nonsingular), and the criterion is exactly the determinant: is invertible if and only if (Lesson 7). Singular matrices () have no inverse because they collapse space, and collapsing loses information that no matrix can restore.
For a matrix there is a tidy formula: Swap the diagonal entries, negate the off-diagonal ones, and divide by the determinant. The division by makes the "no inverse when " rule vivid — you cannot divide by zero.
The inverse's chief use is solving linear systems. If and is invertible, multiply both sides by : This gives the unique solution directly. (In practice, for large systems, Gaussian elimination is faster than computing the inverse, but conceptually the inverse packages the solution.)
Key algebraic facts: the inverse is unique when it exists; ; and the inverse of a product reverses the order, (like putting on socks then shoes, and reversing to take them off). This order-reversal mirrors the non-commutativity of matrix multiplication.
Common pitfall: thinking every square matrix has an inverse, or writing . Only matrices with nonzero determinant are invertible; singular matrices have none. And the inverse of a product reverses the order: , not — because multiplication is non-commutative, the undoing must happen in the opposite sequence.