Courses / Mathematics I
Matrices and Vectors

Matrix Inverses

Mathematics I 263 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, where II is the identity.

A matrix is invertible (or nonsingular) if and only if detA0\det A \neq 0. Singular matrices (detA=0\det A = 0) collapse space, destroying information that cannot be restored.

For a 2×22 \times 2 matrix, use this 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 diagonal entries, negate off-diagonal ones, and divide by the determinant. Division by detA\det A shows why zero determinants have no inverse.

PropertyRuleMeaning
UniquenessOne A1A^{-1}Exists uniquely when detA0\det A \neq 0
Double Inverse(A1)1=A(A^{-1})^{-1} = AUndoing the undoing returns AA
Product Rule(AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}Order reverses like shoes and socks
A round trip through a matrix and its inverse, the symbolic recipe

Solving and Pitfalls

The primary use of the inverse is solving linear systems. If Ax=bA\mathbf{x} = \mathbf{b} and AA is invertible, multiply by A1A^{-1} to get: x=A1b\mathbf{x} = A^{-1}\mathbf{b}

This gives the unique solution directly, though Gaussian elimination is faster for large systems.

Common Pitfalls to Avoid:

Multiplication is non-commutative, so the undoing steps must happen in the exact reverse 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

Matrices and Vectors