Properties of 2x2 Determinants
Learning objectives
- Apply the multiplicative property of determinants
- Understand the effect of row operations on the determinant
- Use determinant properties to simplify computations
If you treat the determinant only as the formula , half its power is hidden. The real magic is in the properties: rules that let you shortcut huge calculations, deduce facts about a matrix without expanding, and connect algebra to geometry. This section catalogues the five most useful properties for the case, with the same parallelogram picture as your guide.
The five fundamental properties
- Multiplicativity: .
- Transpose: .
- Row swap: swapping two rows multiplies the determinant by .
- Row scaling: multiplying a row by multiplies the determinant by .
- Row addition: adding a multiple of one row to another leaves the determinant unchanged.
Every one of these can be verified by direct expansion of , but the geometric picture makes them inevitable. Each row of a matrix is one side of the parallelogram. Swapping the rows flips the orientation, hence the sign change. Scaling a row stretches one side, the area scales linearly. Adding a multiple of one row to another shears the parallelogram, which preserves area. These are not arbitrary rules; they are geometry.
- Numerical Computing: Gaussian elimination relies on the fact that row operations either leave the determinant invariant or scale it predictably; LU decomposition uses this to compute determinants in instead of the of cofactor expansion.
- Linear Programming: The simplex algorithm moves between corner points of the feasible region; each move is a row operation, and the determinant's sign tells you whether the move preserves orientation.
- Robotics: Singular configurations of a robot arm, where it loses a degree of freedom, are detected by checking when the Jacobian's determinant vanishes; controllers monitor this in real-time to avoid lock-up.
(Use the widget to see properties 3–5 in action. Drag and to fix . Now imagine swapping the labels, the sign flips to . Imagine doubling : the parallelogram is twice as tall, area is . Imagine adding to : the parallelogram shears, but its area stays at .)
Two consequences that come out for free
From the product rule (#1), applied to :
So the inverse matrix scales area by exactly the reciprocal of what scales by. Makes sense: undoing a stretch should mean a shrink.
From the row scaling property applied to both rows at once:
More generally, for an matrix, one factor of per row.
The dependence consequence
If one row of is a scalar multiple of the other (say row 2 = row 1), then the rows are linearly dependent. They point along the same line, so the parallelogram collapses to a line segment with area . Therefore , and is singular. This is the cleanest way to spot a non-invertible matrix at sight: do any two rows look proportional?
Row reduction as determinant arithmetic
Properties 3, 4, 5 are exactly the three elementary row operations from Gaussian elimination. So they let you compute by reducing to a triangular form, tracking sign changes from swaps and scale factors from row scalings, and then just multiplying the diagonal entries. This is how a computer evaluates large determinants: row operations, not generalisations.
Try it
- If and , compute , , , and .
- Without expansion, find \det\begin{pmatrix} 1 & 2 \\ 3 & 6 \end{pmatrix}. (Hint: look at the rows.)
- Start from \det\begin{pmatrix} 2 & 5 \\ 1 & 3 \end{pmatrix}. Verify the row-addition property: subtract times row 1 from row 2, then compute of the new matrix, you should get the same answer.
- Use the widget to see why : double and double . The area quadruples, not just doubles.
Pause: property 5 says adding row 1 to row 2 leaves unchanged. But property 4 says scaling row 2 by multiplies by . Adding row 1 to row 2 and then scaling that new row by , what happens to ? Apply the two rules in order.
A trap to watch for
Property 1, , is the famous one. Beginners over-apply it: they write . This is false in general. Test it: gives , but . The determinant is multiplicative in products, but it is not linear in sums. Memorise the asymmetry.
A second trap, specific to row operations: row swaps negate the sign. Students reduce a matrix to triangular form using swaps, multiply the diagonal entries, and forget to flip the sign at the end. If you used three row swaps in your reduction, the final answer needs a factor of . Track every swap.
What you now know
You have a working catalogue of the determinant properties, you can compute and at sight, and you can spot singularity by looking for proportional rows. The next section is a single short step up: the determinant of a matrix. The formula gets longer, but the picture, and the properties, are essentially the same.
Quick check
Mark section complete →
References
- Lang, S. (1971). Basic Mathematics. Springer. Chapter 17, §3, algebraic derivations of each property from the formula .
- Strang, G. (2016). Introduction to Linear Algebra (5th ed.). Wellesley-Cambridge Press. Chapter 5: row operations on determinants and the connection to elimination.
- Hoffman, K.; Kunze, R. (1971). Linear Algebra (2nd ed.). Prentice-Hall. Chapter 5: the axiomatic characterisation of the determinant: the unique multilinear, alternating, normalised function.
- Axler, S. (2015). Linear Algebra Done Right (3rd ed.). Springer. §10.B, product rule in basis-free language.