A determinant is a single number attached to a square matrix. In practice, it answers two common questions fast: is the matrix invertible, and how does the corresponding linear transformation scale area or volume?
Two conditions matter right away. Determinants are defined only for square matrices. If , the matrix is singular, so it does not have an inverse.
What a determinant means
For a matrix
the determinant is
If a square matrix represents a linear transformation, then gives the area scaling factor in dimensions or the volume scaling factor in dimensions. The sign tells you whether orientation is preserved or reversed. This geometric interpretation is tied to the usual Euclidean setting.
This is also the quick invertibility test: means is invertible, while means it is not.
Determinant properties that matter most
You do not need a long list to use determinants well. These are the properties that usually matter most:
- If two rows are swapped, the determinant changes sign.
- If one row is multiplied by a constant , the determinant is multiplied by .
- If a multiple of one row is added to another row, the determinant stays the same.
- If a matrix has two equal rows, or one row is a multiple of another, its determinant is .
- If , then is invertible. If , it is not.
Those row-operation facts are especially useful because they let you simplify a matrix before computing its determinant.
How cofactor expansion works
For a matrix or larger, one standard method is cofactor expansion. The idea is to choose a row or column, then combine its entries with smaller determinants.
For a matrix , the cofactor at position is
where is the determinant of the smaller matrix left after deleting row and column .
Then an expansion along row is
The signs alternate in a checkerboard pattern:
In practice, choose a row or column with zeros when possible. That reduces the amount of computation.
Worked example: finding a determinant
Let
Expand along the first row. That is a good choice here because the third entry is .
Now compute the determinants:
and
So
That result has two immediate consequences. Since , the matrix is invertible. Geometrically, the associated D transformation scales signed volume by a factor of , so orientation is reversed.
When to use Cramer's Rule
Cramer's Rule uses determinants to solve a square system of linear equations. It applies only when the coefficient matrix is square and has nonzero determinant.
If
with square and , then
where is formed by replacing the th column of with the constants column .
This is a clean method for small systems because it shows exactly why a nonzero determinant corresponds to a unique solution. If , Cramer's Rule does not give a unique solve.
Common determinant mistakes
Using determinants on non-square matrices
A matrix does not have a determinant. The square-matrix condition comes first.
Losing the cofactor signs
In expansion, the sign pattern matters just as much as the minors. A correct minor with the wrong sign still gives the wrong determinant.
Forgetting what row operations do
Not every row operation leaves the determinant unchanged. Swapping rows changes the sign, scaling a row scales the determinant, and only adding a multiple of one row to another keeps it the same.
Using Cramer's Rule when
The formula divides by . If that determinant is , the method does not produce a unique solution.
Where determinants are used
Determinants appear throughout linear algebra because they connect several important questions: does a matrix have an inverse, does a linear system have a unique solution, and how does a transformation change area or volume?
They also appear in change of variables, eigenvalue work, geometry, and differential equations. In many introductory problems, though, the most practical use is still the simplest one: checking whether a square matrix is singular.
Try your own version
Try expanding
along the first row. After you get the determinant, decide whether the matrix is invertible. Then check each minor and sign pattern before you compare your final answer.
Need help with a problem?
Upload your question and get a verified, step-by-step solution in seconds.
Open GPAI Solver →