Definition
An inverse matrix of a square matrix is a matrix such that , where is the identity matrix. A matrix that possesses an inverse is called nonsingular or invertible.
- How to read: “The matrix A times its inverse equals the inverse times A, which equals the identity matrix I n.”
- Meaning: Multiplying by undoes the transformation of , returning the identity (no change).
Why It Matters
Matrix inverses allow us to ‘undo’ transformations and solve systems of equations; without them, the linear algebra that powers GPS, graphics, and data science would be a one-way street with no way to recover the original inputs.
Core Concepts
-
Matrix Multiplication: Unlike scalar multiplication, matrix multiplication is generally not commutative (). The number of columns in must equal the number of rows in .
- How to read: “The matrix product A B is not equal to B A.”
- Meaning: Order matters in matrix products; swapping factors usually gives a different result.
-
Identity Matrix ()$: The multiplicative neutral element in matrix algebra (ones on the diagonal, zeros elsewhere).
- How to read: “The identity matrix I.”
- Meaning: Identity matrix—ones on the diagonal, zeros elsewhere; multiplying any matrix by leaves it unchanged (like multiplying by 1 for scalars).
-
Existence of Inverse: A square matrix has an inverse if and only if .
- How to read: “The determinant of the matrix A is not equal to zero.”
- Meaning / when to use: Nonsingular matrices (det ) are invertible; det means the transformation collapses dimension and cannot be reversed.
-
Solving Systems: If a system is represented as , and is invertible, the unique solution is .
- How to read: “The system A X equals B, so the solution X equals A-inverse times B.”
- Meaning: Left-multiply both sides by to isolate the unknown vector .