Mathwords logoMathwords

Invertible Matrix Theorem — Definition, Formula & Examples

The Invertible Matrix Theorem is a collection of equivalent statements that are all true or all false for a given n×nn \times n matrix AA. If any one condition holds (such as det(A)0\det(A) \neq 0 or AA has nn pivot positions), then every other condition on the list also holds, confirming that AA is invertible.

Let AA be an n×nn \times n matrix. The following statements are equivalent: (a) AA is invertible, (b) AA is row equivalent to the n×nn \times n identity matrix InI_n, (c) AA has nn pivot positions, (d) the equation Ax=0A\mathbf{x} = \mathbf{0} has only the trivial solution, (e) the columns of AA are linearly independent, (f) the linear transformation xAx\mathbf{x} \mapsto A\mathbf{x} is one-to-one, (g) Ax=bA\mathbf{x} = \mathbf{b} has a unique solution for every bRn\mathbf{b} \in \mathbb{R}^n, (h) the columns of AA span Rn\mathbb{R}^n, (i) det(A)0\det(A) \neq 0, (j) 00 is not an eigenvalue of AA, (k) ATA^T is invertible.

How It Works

To apply the theorem, you only need to verify one condition from the list. For instance, if you row-reduce AA and find nn pivots, you can immediately conclude every other statement is true: AA is invertible, its columns are linearly independent, Ax=bA\mathbf{x} = \mathbf{b} has a unique solution for every b\mathbf{b}, and so on. Conversely, if any single condition fails — say det(A)=0\det(A) = 0 — then every condition fails, meaning AA is singular. This makes the theorem a powerful diagnostic tool: one check answers many questions at once.

Worked Example

Problem: Determine whether the matrix A=[2143]A = \begin{bmatrix} 2 & 1 \\ 4 & 3 \end{bmatrix} is invertible using the Invertible Matrix Theorem.
Choose a condition: Compute the determinant of AA.
det(A)=(2)(3)(1)(4)=64=2\det(A) = (2)(3) - (1)(4) = 6 - 4 = 2
Apply the theorem: Since det(A)=20\det(A) = 2 \neq 0, the theorem guarantees that every equivalent condition holds: AA is invertible, its columns are linearly independent, Ax=bA\mathbf{x} = \mathbf{b} has a unique solution for every b\mathbf{b}, and so on.
Answer: AA is invertible because det(A)=20\det(A) = 2 \neq 0. By the Invertible Matrix Theorem, all equivalent conditions hold simultaneously.

Why It Matters

In a first linear algebra course, the Invertible Matrix Theorem ties together nearly every major concept from the first half of the semester — determinants, pivots, linear independence, span, and uniqueness of solutions — into one unified result. Engineers and scientists rely on it when checking whether a system of equations can be solved uniquely, which arises in circuit analysis, structural mechanics, and data fitting.

Common Mistakes

Mistake: Trying to apply the theorem to non-square matrices.
Correction: The Invertible Matrix Theorem applies only to n×nn \times n (square) matrices. A non-square matrix cannot be invertible in the standard sense.