§3 Determinants, Adjoints, and Cramer’s Rule
1. The Big Idea
A determinant is a single number attached to a square matrix.
That number carries a lot of information. It can tell us whether a matrix is invertible, whether a square system has a unique solution, and whether rows or columns are secretly dependent on each other.
Only square matrices have determinants.
The most important test is:
| Determinant | Meaning |
|---|---|
| is invertible | |
| is not invertible |
For a square system, means the system has exactly one solution. If , something collapses: the rows or columns do not contain enough independent information to undo the matrix.
2. Determinant of a Matrix
For
the determinant is
You may also see determinant notation written as
Example
Let
Then
so
Since , the matrix is invertible.
3. What the Determinant Tells You
The determinant is often used as a quick decision tool.
For a square matrix :
| Question | Determinant test |
|---|---|
| Is invertible? | yes if |
| Does have a unique solution for every ? | yes if |
| Are the rows/columns independent? | yes if |
| Did the matrix collapse information? | yes if |
So when you see a determinant problem, ask first: is the goal to compute a number, or is the goal to decide invertibility/uniqueness?
4. Minors and Cofactors
For larger matrices, determinants are built from smaller determinants.
The minor is found by deleting row and column , then taking the determinant of what remains.
The cofactor is the minor with a sign attached:
For a matrix, the sign pattern is
That means cofactors alternate signs like a checkerboard.
How to Find a Cofactor
To find :
- Delete row .
- Delete column .
- Compute the determinant of the smaller matrix. That is .
- Apply the sign .
The minor is the smaller determinant. The cofactor is the signed minor.
5. Cofactor Expansion
Cofactor expansion is a general method for computing determinants.
The idea is to choose a row or column, multiply each entry by its cofactor, and add the results.
Expansion along row :
Expansion along column :
Practical Tip
Choose the row or column with the most zeros.
If an entry is zero, then its whole term becomes zero, so you do not need to compute that cofactor. This can save a lot of work.
6. Shortcut for Determinants
For
the shortcut gives
Your notes also use the “copy the first two columns” diagonal method. That method is another way to remember the same formula.
Important warning: this shortcut works only for matrices. Do not try to extend the diagonal-copy trick to matrices.
For larger matrices, use cofactor expansion or row-reduction methods.
7. Determinants and Row Operations
Row operations are useful for determinants, but you must track how each operation changes the determinant.
| Row operation | Effect on determinant |
|---|---|
| Swap two rows | changes the sign |
| Multiply one row by | multiplies determinant by |
| Add a multiple of one row to another row | does not change the determinant |
In symbols:
These rules are especially useful when reducing a matrix to triangular form. Once the matrix is triangular, the determinant is much easier to compute.
8. Fast Determinant Facts
Some determinant results can be recognized immediately.
Triangular Matrices
If is triangular, meaning all entries above or below the main diagonal are zero, then
So for triangular matrices, just multiply the diagonal entries.
Zero Row or Column
If has a row or column of zeros, then
There is not enough information in the rows or columns for the matrix to be invertible.
Repeated Rows or Columns
If has two equal rows or two equal columns, then
Multiple Rows or Columns
If one row is a multiple of another row, or one column is a multiple of another column, then
This is a sign of linear dependence.
9. Determinants and Matrix Operations
For square matrices and of the same size:
If is invertible:
For an matrix:
The last rule is easy to misuse. Multiplying a whole matrix by multiplies every row by , so the determinant gets factors of .
Important Warning
Determinants do not distribute over addition:
in general.
They also do not distribute over subtraction:
in general.
10. The Adjoint Matrix
The adjoint is built from cofactors.
First, form the cofactor matrix:
Then transpose it.
The adjoint of , written , is
So the process is:
- Find every cofactor.
- Put the cofactors into a matrix.
- Transpose that matrix.
11. Inverse Using the Adjoint
If is invertible, then
This formula works for any square invertible matrix.
For large matrices, row-reduction is usually easier. Still, this formula is important because it connects three major ideas:
- determinants
- cofactors/adjoints
- inverses
It also explains why is required. If , then the formula would require division by zero.
12. Useful Adjoint Properties
For an invertible matrix:
These are useful for formula-based determinant problems. Notice that the product rule reverses order, just like inverse and transpose product rules do.
13. Cramer’s Rule
Cramer’s Rule solves square systems using determinants.
Suppose a system is written as
and
Then the system has a unique solution.
For variables ,
where is the matrix formed by replacing column of with the constant vector .
In words:
- replace the first column to find
- replace the second column to find
- keep going one column at a time
Cramer’s Rule is most practical for small systems, especially or sometimes systems.
14. Worked Example: Cramer’s Rule
Solve the system
The coefficient matrix is
and the constant vector is
First compute the determinant of :
Since , Cramer’s Rule applies.
Find
Replace the -column with :
Then
So
Find
Replace the -column with :
Then
So
Therefore,
15. Problem-Solving Routine
When working with determinants, use this checklist:
- Check that the matrix is square. If it is not square, it has no determinant.
- For , use . This is the fastest method.
- For , use the shortcut or cofactor expansion. The shortcut works only for .
- For larger matrices, look for zeros. Cofactor expansion is easier along rows or columns with many zeros.
- If using row operations, track determinant changes. Swaps, scaling, and row replacement affect determinants differently.
- For invertibility, only check whether the determinant is zero. Nonzero means invertible; zero means not invertible.
- For Cramer’s Rule, replace one column at a time. Each replaced-column determinant gives one variable.
16. Key Takeaways
- Determinants are only defined for square matrices.
- means is invertible.
- means is not invertible.
- Cofactors are signed minors.
- Cofactor expansion breaks a determinant into smaller determinants.
- Row swaps change determinant sign.
- Scaling one row scales the determinant.
- Adding a multiple of one row to another does not change the determinant.
- The adjoint is the transpose of the cofactor matrix.
- Cramer’s Rule solves square systems using determinant ratios.
Mini-Self-Check
- What does tell you about a square matrix ?
It tells you that is not invertible. The rows or columns are dependent, so the matrix cannot be undone.
- Which row operation does not change the determinant?
Adding a multiple of one row to another row does not change the determinant.
- Why does Cramer’s Rule require ?
Because each variable is found by dividing by . If , division by zero would occur, and the system would not have a unique solution.
- How do you build the adjoint matrix?
Find the cofactor matrix first, then transpose it. In symbols, .