Courses / Mathematics I
Matrices and Vectors

Matrix Inverses

Mathematics I 300 words Free to read

Undoing a Matrix

The inverse of a square matrix AA is the matrix A1A^{-1} that "undoes" it: AA1=A1A=IAA^{-1} = A^{-1}A = I, the identity. Not every matrix has one — a matrix with an inverse is invertible (or nonsingular), and the criterion is exactly the determinant: AA is invertible if and only if detA0\det A \neq 0 (Lesson 7). Singular matrices (detA=0\det A = 0) have no inverse because they collapse space, and collapsing loses information that no matrix can restore.

For a 2×22 \times 2 matrix there is a tidy formula: A=(abcd)    A1=1adbc(dbca).A = \begin{pmatrix} a & b \\ c & d \end{pmatrix} \;\Rightarrow\; A^{-1} = \frac{1}{ad - bc}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}. Swap the diagonal entries, negate the off-diagonal ones, and divide by the determinant. The division by detA\det A makes the "no inverse when det=0\det = 0" rule vivid — you cannot divide by zero.

The inverse's chief use is solving linear systems. If Ax=bA\mathbf{x} = \mathbf{b} and AA is invertible, multiply both sides by A1A^{-1}: x=A1b.\mathbf{x} = A^{-1}\mathbf{b}. 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; (A1)1=A(A^{-1})^{-1} = A; and the inverse of a product reverses the order, (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1} (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 (AB)1=A1B1(AB)^{-1} = A^{-1}B^{-1}. Only matrices with nonzero determinant are invertible; singular matrices have none. And the inverse of a product reverses the order: (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}, not A1B1A^{-1}B^{-1} — because multiplication is non-commutative, the undoing must happen in the opposite sequence.

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

10practice questions
2interactive scenes
Start Mathematics I free

Matrices and Vectors