5. Inverses and Determinants

Invertibility

Invertibility

Imagine trying to undo an action perfectly. If you multiply by a number, can you divide by that same number? If you rotate a shape, can you rotate it back? In linear algebra, this idea is called invertibility. students, this lesson will show you how to tell when a matrix has an inverse, why that matters, and how invertibility connects to determinants, solving systems, and real-world modeling 🔍

What does invertibility mean?

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

$$AA^{-1}=A^{-1}A=I$$

where $I$ is the identity matrix. The identity matrix acts like $1$ for matrix multiplication: multiplying by it does not change a vector or matrix.

If a matrix is invertible, then every effect of the matrix can be undone. This is why invertibility is sometimes described as “reversible” or “undoable.” For example, if a matrix transformation stretches, rotates, or shears a shape, an inverse transformation reverses that exact change.

A matrix that is not invertible is called singular. Singular matrices do not have an inverse. That means some information is lost when the matrix acts on a vector, so the original input cannot always be recovered.

A simple number example helps: $5$ has an inverse, which is $\frac{1}{5}$, because $5\cdot \frac{1}{5}=1$. But $0$ has no multiplicative inverse, because there is no number you can multiply by $0$ to get $1$. Matrices work the same way in spirit, but with more structure.

Why invertibility matters

Invertibility is important because it tells us whether a linear system has a unique solution. If $A$ is an invertible matrix and $Ax=b$, then we can solve for $x$ by multiplying both sides by $A^{-1}$:

$$A^{-1}Ax=A^{-1}b$$

which simplifies to

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

This gives exactly one solution for every vector $b$.

That is a huge idea in applications. In engineering, matrices may model forces or electrical circuits. In computer graphics, matrices can rotate or resize images. In economics, matrices can represent relationships between industries. If the matrix is invertible, the model can often be reversed to recover the original inputs.

If the matrix is not invertible, the system may have either no solution or infinitely many solutions. In both cases, there is no unique way to reverse the transformation.

How to recognize an invertible matrix

There are several equivalent ways to test invertibility. These are all connected, so if one is true, the others are true too.

1. The matrix has an inverse

This is the definition. A square matrix $A$ is invertible if there exists a matrix $A^{-1}$ such that

$$AA^{-1}=I$$

and

$$A^{-1}A=I$$

2. The determinant is not zero

For a square matrix $A$,

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

This is one of the most important connections in the topic of inverses and determinants.

Why does the determinant matter? Geometrically, the determinant measures how a matrix changes area, volume, or higher-dimensional size. If $\det(A)=0$, the transformation collapses space into a lower dimension. For example, a 2D shape might get flattened into a line. Once that happens, the original shape cannot be recovered uniquely, so the matrix is not invertible.

If $\det(A)\neq 0$, then the transformation preserves enough information to be reversed.

3. The rows and columns are linearly independent

A square matrix is invertible exactly when its rows are linearly independent, and also exactly when its columns are linearly independent.

That means none of the rows can be written as a combination of the others. If one row depends on the others, then the matrix contains redundant information, which makes inversion impossible.

4. The system $Ax=0$ has only the trivial solution

Another equivalent condition is that the homogeneous equation

$$Ax=0$$

has only the solution

$$x=0$$

This means the transformation does not send any nonzero vector to the zero vector. If it did, then different inputs would collapse to the same output, and the transformation could not be undone uniquely.

A worked example with a $2\times 2$ matrix

Consider the matrix

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

To test invertibility, compute its determinant:

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

Since $\det(A)=1\neq 0$, the matrix is invertible.

We can even find the inverse. For a $2\times 2$ matrix

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

the inverse, when it exists, is

$$\frac{1}{ad-bc}\begin{pmatrix}d & -b\\ -c & a\end{pmatrix}$$

So here,

$$A^{-1}=\frac{1}{1}\begin{pmatrix}2 & -1\\ -3 & 2\end{pmatrix}=\begin{pmatrix}2 & -1\\ -3 & 2\end{pmatrix}$$

You can check that

$$AA^{-1}=I$$

This example shows how determinant and inverse work together. The nonzero determinant tells us an inverse exists, and then we can actually compute it.

Now compare with

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

Its determinant is

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

So $B$ is not invertible. Notice that the second row is $2$ times the first row, so the rows are dependent. This means the matrix repeats information instead of giving new information.

Geometric meaning of invertibility

A matrix can be thought of as a transformation of space. In two dimensions, it may stretch, rotate, reflect, or shear shapes. In three dimensions, it can do similar things to solids.

If a matrix is invertible, it does not crush dimensions. It keeps space “full” enough so that every point can be traced back to one original point.

If a matrix is not invertible, it may flatten all vectors onto a line or a plane. That destroys information. For example, if every point on a square gets sent to the same line segment, many different inputs will share the same output. There is no way to reverse that perfectly.

This is why a zero determinant is such a warning sign 🚦 It means the transformation has collapsed space in some way.

Invertibility and solving systems

Suppose you have the system

$$Ax=b$$

If $A$ is invertible, then the solution is unique and can be written as

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

This is not just a formula to memorize. It tells you what invertibility really means: solving the system is possible in one exact way.

If $A$ is not invertible, then solving gets tricky. The system could have no solution, which happens when the equations contradict each other. Or it could have infinitely many solutions, which happens when the equations are really the same equation in disguise.

In classroom practice, row reduction is often used to check invertibility. If a square matrix row-reduces to the identity matrix $I$, then it is invertible. If it row-reduces to a matrix with a row of zeros, it is not invertible.

Why determinants and inverses belong together

The topic of inverses and determinants is closely linked because determinants give a quick test for invertibility.

A determinant is easier to compute than a full inverse in many cases, especially for larger matrices using row operations. In many problems, you do not need the inverse itself. You only need to know whether it exists. Then $\det(A)$ is a fast and powerful tool.

There is also an important formula:

$$A^{-1}=\frac{1}{\det(A)}\operatorname{adj}(A)$$

for any invertible square matrix $A$, where $\operatorname{adj}(A)$ is the adjugate matrix. This formula shows directly why $\det(A)\neq 0$ is required. If $\det(A)=0$, then division by zero would occur, which is impossible. So the formula itself reflects the invertibility rule.

Conclusion

Invertibility means a matrix can be undone. students, the most important idea is that an invertible matrix has an inverse, and that happens exactly when $\det(A)\neq 0$. Invertibility connects to unique solutions of systems, independent rows and columns, and transformations that preserve enough information to reverse them. When you understand invertibility, you have a strong foundation for the broader study of inverses and determinants. It is one of the central ideas that links algebra, geometry, and problem-solving in linear algebra ✨

Study Notes

  • A square matrix $A$ is invertible if there exists $A^{-1}$ such that $AA^{-1}=A^{-1}A=I$.
  • A matrix that is not invertible is called singular.
  • The key test is $A$ is invertible if and only if $\det(A)\neq 0$.
  • If $\det(A)=0$, the matrix is not invertible and the transformation loses information.
  • An invertible matrix has linearly independent rows and columns.
  • For an invertible matrix, the equation $Ax=b$ has a unique solution $x=A^{-1}b$.
  • The homogeneous system $Ax=0$ has only the trivial solution $x=0$ when $A$ is invertible.
  • Row reduction can help check invertibility: a matrix is invertible if it row-reduces to the identity matrix $I$.
  • Invertibility is connected to geometry because invertible transformations do not collapse space into a lower dimension.
  • Determinants and inverses are connected because the determinant tells whether an inverse exists.

Practice Quiz

5 questions to test your understanding