4.5.21 · D1Linear Algebra (Full)

Foundations — Determinants — cofactor expansion along any row - column

2,123 words10 min readBack to topic

Before you can read the parent note on cofactor expansion, you must own every symbol it throws at you. Below, each idea is built on the previous one — read top to bottom, skip nothing.


1. A matrix, and its size

Picture it as a spreadsheet: number the rows top-to-bottom and the columns left-to-right . Figure s01 labels these row and column indices on our example matrix.

Figure — Determinants — cofactor expansion along any row - column

Why the topic needs it: the determinant is only defined for square matrices, and the general formulas run over — so you must know what counts before any sum makes sense.


2. The entry — addressing one number

Read it like a street address: means "go to row 2, then column 3". In the matrix above, and .

Why the topic needs it: every formula in the parent note multiplies specific entries ; you must be able to pick the exact number out of the grid instantly.


3. The symbol — the "determinant of" operation

We have not yet said how to compute for a big matrix — that is the whole point of the parent note. Here we are only fixing what the symbol means so later formulas like read as "the number equals …". The upcoming sections (§4, §5) give the actual recipes for the small cases.

Why the topic needs it: the parent note opens straight into "" — you cannot read that line unless already means something to you.


4. Sigma notation — "add up a list"

Why the topic needs it: the expansion formula is nothing but "walk along a line and add up the pieces". Without you can't read it.


5. The and determinants — the base cases

Everything the parent note does recurses down until the leftover matrices are tiny. So we must nail the smallest cases where is defined outright, no recipe needed.

Figure — Determinants — cofactor expansion along any row - column

Why the topic needs it: cofactor expansion turns a into pieces, and a into into into . These two tiny cases are the floor of the recursion — the recipe stops here because these are defined directly.


6. Deleting a row and column → the Minor

Figure — Determinants — cofactor expansion along any row - column

Why the topic needs it: the minor is the smaller determinant each step of the expansion produces. It is how the recursion physically happens — a minor-hunt gives leftovers, which give leftovers.


7. The sign — the checkerboard

Why does raising to a power give this? Because multiplied by itself an even number of times returns to , and an odd number of times lands on . So the parity (even-or-odd-ness) of is all that matters.

Why the topic needs it: without this sign the smaller determinants would add up to the wrong number. The sign encodes a deeper fact (permutation parity, from the Leibniz formula for determinants) — but for computing, it is simply the checkerboard.


8. The Cofactor — signed minor

Why the topic needs it: the entire expansion is built from entries times cofactors. The cofactor is the atom of the formula.


9. Putting the symbols together — row AND column expansion

First fix one particular row, call its number (any single value from to that you choose). Then let sweep across that row. Now every piece of the parent formula is defined:

Read it aloud: "Pick one row . Walk along that row; for each entry, multiply by its checkerboard sign and its minor; add them all."


10. How these foundations feed the topic

Square matrix A size n

Entry a_ij row i col j

det symbol determinant of

Sigma notation add a list

1x1 determinant det a equals a

2x2 determinant ad minus bc

Minor delete row and column

Checkerboard sign minus one power i plus j

Cofactor signed minor

Cofactor expansion along any row or column

Each box on the left must be solid before the "Cofactor expansion" box on the right makes sense.


Equipment checklist

Give the answer in your head, then reveal:

What does the letter count in an matrix?
The size — the common number of rows and columns.
In , which subscript is the row?
The first one, . Row first, column second.
What does the symbol mean?
The single number (the determinant) squeezed out of the square matrix .
Determinant of a matrix ?
Just — the true base case of the recursion.
What does tell you to do?
Let , compute the term for each, and add the three results.
Formula for a determinant?
(main diagonal minus anti-diagonal).
Before summing over in a row expansion, what must you do first?
Fix one particular row (a single value ).
How do you expand along a column instead?
Fix the column and sum over the rows .
How do you build the minor ?
Delete row and column , then take the determinant of what's left.
Is the sign at position plus or minus?
is odd, so minus .
What is the top-left sign, always?
Always (since is even).
Relationship between cofactor and minor?
— the minor wearing its checkerboard sign.
What does signal?
The stretching machine collapses space (flat parallelogram) — the matrix is singular.

Connections

  • Leibniz formula for determinants — the deep source of the checkerboard sign (permutation parity).
  • Properties of determinants (multilinearity, alternation) — why deleting/adding rows behaves the way it does.
  • Determinant via row reduction — the faster cousin once you know these basics.
  • Adjugate matrix and inverse — a whole matrix built out of cofactors.
  • Cramer's rule — solving equations with cofactors.
  • Invertibility and singular matrices invertible.