Visual walkthrough — Properties — row operations, multiplicativity
Before any algebra, we agree on ONE picture that everything hangs on.
Step 1 — What is a matrix doing to a picture?
WHAT. Take the simplest square shape: the unit square — a square one unit wide and one unit tall, sitting with its corner at the origin. Its two edges are the arrows (pointing right) and (pointing up).
A matrix is a machine: it sends the right-arrow to the first column and the up-arrow to the second column .
- — where the right edge lands (its new and ).
- — where the up edge lands.
The unit square becomes a slanted parallelogram spanned by those two new arrows.
WHY. The whole point of the determinant is a single number: "Signed" means: positive if the two arrows keep their original anticlockwise turn, negative if the machine flipped them into a mirror image. Everything below is just: what happens to this area when I fiddle with the rows?
PICTURE.

Step 2 — The three seed facts (drawn, not assumed)
Everything follows from three pictures. We give each a plain name.
WHY these three? They are the minimum honest description of "signed area." (N) fixes the unit. (A) says a squashed-flat shape has no area. (M) says area grows in proportion to how far you stretch an edge — that is what "area" means. See Multilinear Alternating Forms.
PICTURE.

Annotating (M) term by term, first slot: Each piece keeps the same second arrow (the shared base), so the areas literally stack.
Step 3 — Swap two rows: the sign flips (derived from the seeds)
WHAT. Exchange the two arrows: . We show it must equal — no new axiom needed.
WHY the trick. Feed the machine an arrow that is a sum, , in both slots. By (A) it is zero (both slots equal). Then crack it open with (M):
Expand slot 1, then slot 2:
The two end terms vanish because each has a repeated arrow. What is left:
PICTURE. The two parallelograms are the same shape, but the turn from first arrow to second reverses — anticlockwise becomes clockwise. That mirror-flip is the minus sign.

Step 4 — Scale a row: the determinant scales
WHAT. Stretch one edge-arrow by a factor : .
WHY. This is exactly the second half of (M): pulling a scalar out of one slot.
The base is untouched; the height along is times bigger, so the area is times bigger.
PICTURE.

Step 5 — Replacement (shear): the determinant does NOT change
WHAT. Add a multiple of one arrow to another: . Show the area is unchanged.
WHY. Split the new first slot with (M):
The extra piece has in both slots — a flat line, area . So it dies:
PICTURE. Sliding the tip of one arrow along the direction of the other is a shear. Base stays the same, height (perpendicular distance to the base line) stays the same — same area. Like pushing the top of a deck of cards sideways: same volume.

Step 6 — The degenerate case: a flat parallelogram means
WHAT. What if the two arrows point the same way (one is a multiple of the other), ?
WHY. By scaling (Step 4) then alternating (Step 2):
The parallelogram has collapsed to a line — no area, so . This is the picture behind a singular matrix: the machine squashes the plane onto a line, losing a dimension.
PICTURE.

Step 7 — Row reduction reads the determinant off the diagonal
WHAT. Use Steps 3–5 to grind down to an upper-triangular matrix (all zeros below the diagonal), tracking what each move costs.
WHY. A triangular matrix's arrows form a parallelogram whose signed area is just the product of the diagonal entries (each cofactor expansion has one surviving term). And we know the price of each move:
- every swap multiplies by ,
- every division of a row by multiplies by ,
- every replacement is free.
Putting it together, with = number of swaps and the product of scalars you divided by:
PICTURE (worked, Example 1 of the parent).

\underbrace{\det(AB)}{\text{do }B\text{ then }A}=\underbrace{\det A}{\text{2nd stretch}}\cdot\underbrace{\det B}_{\text{1st stretch}}.
**WHY (algebra).** Each row operation is left-multiplication by an [[Elementary Matrices|elementary matrix]] $E$, and Steps 3–5 give its determinant exactly: swap $\det E=-1$, scale $\det E=k$, replacement $\det E=1$. In every case $\det(EA)=\det E\,\det A$. An invertible $A$ is a product of elementaries $A=E_1\cdots E_m$, so $$\det(AB)=\det(E_1)\cdots\det(E_m)\det(B)=\det A\,\det B.$$ If $A$ is singular ($\det A=0$), Step 6 says its arrows already collapse; $AB$ collapses too, so both sides are $0$. **PICTURE.** ![[deepdives/dd-maths-4.5.22-d2-s08.png]] > [!example] Numbers check > $A=\begin{pmatrix}1&2\\3&4\end{pmatrix}$ ($\det=-2$), $B=\begin{pmatrix}2&0\\1&2\end{pmatrix}$ ($\det=4$), $AB=\begin{pmatrix}4&4\\10&8\end{pmatrix}$, $\det(AB)=32-40=-8=(-2)(4)$. ✓ > [!formula] Free corollaries > $\det(A^{-1})=\dfrac{1}{\det A}$, $\;\det(A^k)=(\det A)^k$, and $\det(A^T)=\det A$ (so all row pictures work for columns too). The last one links to [[Eigenvalues — det as product of eigenvalues]]. --- ## The one-picture summary ![[deepdives/dd-maths-4.5.22-d2-s09.png]] One parallelogram, four fates: **swap** flips it (sign), **scale** grows it (factor $k$), **shear** slides it (no change), **collapse** flattens it ($\det=0$). Row reduction is just a sequence of these until the shape is a triangular box whose area you read off the diagonal — and stacking two machines multiplies their areas. > [!recall]- Feynman: tell it to a 12-year-old > A matrix is a machine that stretches a paper square into a slanted parallelogram. The determinant is just *how much bigger the area got*, plus a minus sign if the shape got flipped over like in a mirror. > - **Swap** the two edge-arrows → same shape, mirror-flipped → area gets a minus sign. > - **Stretch** one edge $k$ times longer → the area gets $k$ times bigger. Stretch *both* edges (that's what $2A$ does) → area gets $k$ for *each* edge, so $\times 4$ for a square. > - **Lean** one edge sideways along the other (a shear) → the base and the height stay the same, so the area doesn't change at all. That's why you're allowed to simplify a matrix by adding rows — it never lies about the area. > - If the two arrows point the same way, the parallelogram is squashed flat into a line — no area — and the determinant is zero. > - Do one machine, then another: the areas just multiply. That's $\det(AB)=\det A\cdot\det B$. > [!recall]- Quick self-test > - Why does a swap give a minus? ::: Same parallelogram, opposite handedness (orientation flip). > - Why is shear free? ::: Base and height unchanged; the extra term has two equal rows → area $0$. > - $\det(2A)$ for $2\times2$? ::: $4\det A$ (both edges double). > - When is $\det=0$? ::: Arrows collinear → flat parallelogram → singular. > - $\det(AB)=?$ ::: $\det A\,\det B$ (stretches multiply).