5. Inverses and Determinants

Using Determinants To Test Invertibility

Using Determinants to Test Invertibility

students, in this lesson you will learn a powerful shortcut for deciding whether a square matrix has an inverse. Instead of trying to find the inverse directly, you can use the determinant as a test. This idea is important because invertible matrices are the ones that can “undo” linear transformations, solve certain systems of equations, and preserve useful structure in algebra and geometry 🔍.

What invertibility means

A square matrix $A$ is invertible if there exists another matrix $A^{-1}$ such that

$$AA^{-1}=I \quad \text{and} \quad A^{-1}A=I$$

where $I$ is the identity matrix. The identity matrix acts like multiplying by $1$ for matrices. If a matrix has an inverse, then every action it performs can be reversed.

Think of a calculator button that multiplies by $5$. The inverse operation is dividing by $5$. In matrix language, invertibility means there is a matrix operation that can reverse the original one. If no such reverse exists, the matrix is not invertible or singular.

One of the fastest ways to test this is with the determinant.

The determinant test

For a square matrix $A$:

  • If $\det(A) \neq 0$, then $A$ is invertible.
  • If $\det(A)=0$, then $A$ is not invertible.

This is one of the most important facts in linear algebra. It gives a clear yes-or-no answer.

Why does this work? The determinant measures how a matrix transformation changes area in $2 \times 2$ cases, volume in $3 \times 3$ cases, and higher-dimensional volume in general. If the determinant is zero, the matrix squashes space into a lower dimension. That means information is lost, so the transformation cannot be reversed. If the determinant is nonzero, the transformation does not collapse space, so an inverse exists.

Understanding what zero means

students, imagine a map that takes every point on a sheet of paper and flattens it onto a line. Once that happens, many different points end up in the same place. You cannot tell them apart anymore, so the process cannot be undone. That is what a determinant of zero signals.

For example, consider

$$A=\begin{pmatrix}1 & 2 \\ 2 & 4\end{pmatrix}$$

Its determinant is

$$\det(A)=(1)(4)-(2)(2)=4-4=0$$

So $A$ is not invertible.

Notice that the second row is exactly $2$ times the first row. This means the rows are dependent, so the matrix does not have enough independent information to reverse the transformation. Determinant zero often happens when rows or columns are repeated, multiples of each other, or otherwise dependent.

Understanding what nonzero means

Now look at

$$B=\begin{pmatrix}3 & 1 \\ 2 & 5\end{pmatrix}$$

Its determinant is

$$\det(B)=(3)(5)-(1)(2)=15-2=13$$

Because $13\neq 0$, the matrix $B$ is invertible.

This means the transformation described by $B$ preserves enough information that it can be reversed. In geometric terms, it does not flatten the plane into a line or point. In algebraic terms, its rows and columns are independent enough to make an inverse possible.

How to compute determinants for invertibility checks

The method depends on the size of the matrix.

For a $2 \times 2$ matrix

If

$$A=\begin{pmatrix}a & b \\ c & d\end{pmatrix}$$

then

$$\det(A)=ad-bc$$

To test invertibility, compute $ad-bc$. If the result is zero, the matrix is not invertible. If it is not zero, the matrix is invertible.

Example:

$$\begin{pmatrix}4 & -1 \\ 6 & 2\end{pmatrix}$$

has determinant

$$\det= (4)(2)-(-1)(6)=8+6=14$$

Since $14\neq 0$, it is invertible ✅.

For a $3 \times 3$ matrix

A common method uses expansion by minors or row operations. For example,

$$C=\begin{pmatrix}1 & 0 & 2 \\ -1 & 3 & 1 \\ 2 & 1 & 0\end{pmatrix}$$

You can compute $\det(C)$ by expanding along a row or column with zeros to make the work easier. If the determinant comes out nonzero, the matrix is invertible.

Sometimes row reduction is faster. If you can row-reduce a matrix to the identity matrix using only row operations that do not destroy the determinant relationship, then the matrix is invertible. But for a quick test, the key fact remains: the determinant tells you the answer.

Connection to systems of equations

One major use of invertibility is solving systems like

$$A\mathbf{x}=\mathbf{b}$$

where $A$ is a square matrix, $\mathbf{x}$ is the unknown vector, and $\mathbf{b}$ is the output vector.

If $A$ is invertible, then there is exactly one solution:

$$\mathbf{x}=A^{-1}\mathbf{b}$$

If $\det(A)=0$, then $A$ is not invertible, and the system may have no solution or infinitely many solutions. Either way, there is no unique solution created by an inverse matrix.

Example:

$$\begin{pmatrix}2 & 1 \\ 4 & 2\end{pmatrix}\mathbf{x}=\mathbf{b}$$

has determinant

$$\det= (2)(2)-(1)(4)=4-4=0$$

So the coefficient matrix is not invertible. This means you cannot solve the system by multiplying both sides by an inverse matrix.

Connection to geometry

Determinants are not just algebraic symbols. They also describe geometry.

For a $2 \times 2$ matrix, the absolute value $|\det(A)|$ gives the area scale factor of the transformation. For a $3 \times 3$ matrix, $|\det(A)|$ gives the volume scale factor.

If $\det(A)=0$, the scale factor is zero, which means the transformation collapses all area or volume into something smaller in dimension. That collapse makes inversion impossible.

If $\det(A)\neq 0$, the transformation stretches, shrinks, rotates, or reflects space without flattening it completely. That is why the transformation can be reversed.

This geometric idea helps explain why the determinant test works so well. It is not just a formula; it reflects whether the transformation keeps enough information to be undone.

Common mistakes to avoid

students, here are a few important mistakes students often make:

  1. Forgetting that the matrix must be square

The determinant is defined for square matrices only. So the invertibility test using determinants applies only to square matrices.

  1. Confusing determinant with inverse

The determinant does not give the inverse directly. It only tells you whether an inverse exists.

  1. Thinking a small determinant means not invertible

A determinant can be very small but still nonzero. For example, $\det(A)=0.001$ still means the matrix is invertible.

  1. Ignoring sign

A negative determinant is still nonzero, so the matrix is invertible. The sign tells you about orientation, not whether an inverse exists.

  1. Skipping careful arithmetic

One incorrect multiplication can change the answer from invertible to not invertible, or the other way around.

Worked examples

Example 1

Test whether

$$A=\begin{pmatrix}5 & 2 \\ 3 & 1\end{pmatrix}$$

is invertible.

Compute the determinant:

$$\det(A)=(5)(1)-(2)(3)=5-6=-1$$

Since $-1\neq 0$, the matrix is invertible.

Example 2

Test whether

$$B=\begin{pmatrix}7 & 4 \\ 14 & 8\end{pmatrix}$$

is invertible.

Compute the determinant:

$$\det(B)=(7)(8)-(4)(14)=56-56=0$$

Since the determinant is zero, the matrix is not invertible.

Notice that the second row is $2$ times the first row. That dependency is the reason the determinant is zero.

Example 3

Suppose a matrix has determinant $-12$.

Because $-12\neq 0$, the matrix is invertible. The negative sign does not matter for invertibility. What matters is whether the determinant is zero or not.

Why this matters in the bigger topic

Using determinants to test invertibility sits right at the center of the topic Inverses and Determinants. It connects three big ideas:

  • matrices can represent transformations,
  • determinants measure whether those transformations collapse space,
  • invertibility tells us whether the transformation can be reversed.

This connection shows why determinants are so useful. They let you make a fast decision before doing more work. Instead of searching for an inverse directly, you can first ask a simpler question: is $\det(A)$ zero or not?

Conclusion

students, the determinant test is one of the most efficient tools in linear algebra. For any square matrix $A$, the rule is simple:

$$\det(A)\neq 0 \iff A \text{ is invertible}$$

and

$$\det(A)=0 \iff A \text{ is not invertible}$$

This test matters because invertible matrices have reverses, produce unique solutions for systems, and avoid collapsing space. The determinant gives both an algebraic and geometric view of the same idea. Once you know how to use it, you have a fast and reliable way to check whether a matrix can be undone.

Study Notes

  • A square matrix is invertible if there is a matrix $A^{-1}$ such that $AA^{-1}=I$ and $A^{-1}A=I$.
  • The determinant test is:
  • $\det(A)\neq 0$ means $A$ is invertible.
  • $\det(A)=0$ means $A$ is not invertible.
  • The test applies only to square matrices.
  • For a $2 \times 2$ matrix $\begin{pmatrix}a & b \\ c & d\end{pmatrix}$, the determinant is $ad-bc$.
  • A determinant of zero often means rows or columns are dependent.
  • If $A$ is invertible, systems of the form $A\mathbf{x}=\mathbf{b}$ have a unique solution $\mathbf{x}=A^{-1}\mathbf{b}$.
  • Geometrically, nonzero determinants mean the transformation does not collapse space.
  • A small determinant is not the same as zero; only $0$ means not invertible.
  • The sign of the determinant does not affect invertibility.
  • The determinant is a quick test that connects algebra, geometry, and solving equations 🔗.

Practice Quiz

5 questions to test your understanding