Properties of 2x2 Determinants

Part 18, Chapter 18: Matrices and 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 adbcad - bc, 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 2times22 \times 2 case, with the same parallelogram picture as your guide.

The five fundamental properties

  1. Multiplicativity: det(AB)=det(A)det(B)\det(AB) = \det(A) \det(B).
  2. Transpose: det(AT)=det(A)\det(A^T) = \det(A).
  3. Row swap: swapping two rows multiplies the determinant by 1-1.
  4. Row scaling: multiplying a row by cc multiplies the determinant by cc.
  5. 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 adbcad - bc, but the geometric picture makes them inevitable. Each row of a 2times22 \times 2 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.

Where this shows up
  • 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 O(n3)O(n^3) instead of the O(n!)O(n!) 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 mathbfu\mathbf{u} and mathbfv\mathbf{v} to fix det=10\det = 10. Now imagine swapping the labels, the sign flips to 10-10. Imagine doubling mathbfu\mathbf{u}: the parallelogram is twice as tall, area is 2020. Imagine adding mathbfv\mathbf{v} to mathbfu\mathbf{u}: the parallelogram shears, but its area stays at 1010.)

Two consequences that come out for free

From the product rule (#1), applied to AcdotA1=IA \cdot A^{-1} = I:

det(A)det(A1)=det(I)=1quadLongrightarrowquaddet(A1)=frac1det(A).\det(A) \det(A^{-1}) = \det(I) = 1 \quad \Longrightarrow \quad \det(A^{-1}) = \frac{1}{\det(A)}.

So the inverse matrix scales area by exactly the reciprocal of what AA scales by. Makes sense: undoing a 5times5\times stretch should mean a tfrac15times\tfrac{1}{5}\times shrink.

From the row scaling property applied to both rows at once:

det(cA)=c2det(A)quadtextforany2times2textmatrix.\det(cA) = c^2 \det(A) \quad \text{for any } 2 \times 2 \text{ matrix.}

More generally, det(cA)=cndet(A)\det(cA) = c^n \det(A) for an ntimesnn \times n matrix, one factor of cc per row.

The dependence consequence

If one row of AA is a scalar multiple of the other (say row 2 = kcdotk \cdot row 1), then the rows are linearly dependent. They point along the same line, so the parallelogram collapses to a line segment with area 00. Therefore det(A)=0\det(A) = 0, and AA 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 det(A)\det(A) by reducing AA 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 adbcad - bc generalisations.

Try it

  • If det(A)=4\det(A) = 4 and det(B)=3\det(B) = -3, compute det(AB)\det(AB), det(A1)\det(A^{-1}), det(2A)\det(2A), and det(AT)\det(A^T).
  • 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 tfrac12\tfrac{1}{2} times row 1 from row 2, then compute det\det of the new matrix, you should get the same answer.
  • Use the widget to see why det(cA)=c2det(A)\det(cA) = c^2 \det(A): double mathbfu\mathbf{u} and double mathbfv\mathbf{v}. The area quadruples, not just doubles.

Pause: property 5 says adding row 1 to row 2 leaves det\det unchanged. But property 4 says scaling row 2 by 22 multiplies det\det by 22. Adding row 1 to row 2 and then scaling that new row by 22, what happens to det\det? Apply the two rules in order.

A trap to watch for

Property 1, det(AB)=det(A)det(B)\det(AB) = \det(A) \det(B), is the famous one. Beginners over-apply it: they write det(A+B)=det(A)+det(B)\det(A + B) = \det(A) + \det(B). This is false in general. Test it: A=B=I_2A = B = I_2 gives det(A+B)=det(2I2)=4\det(A + B) = \det(2I_2) = 4, but det(A)+det(B)=1+1=2\det(A) + \det(B) = 1 + 1 = 2. 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 (1)3=1(-1)^3 = -1. Track every swap.

What you now know

You have a working catalogue of the 2times22 \times 2 determinant properties, you can compute det(A1)\det(A^{-1}) and det(cA)\det(cA) 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 3times33 \times 3 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 adbcad - bc.
  • 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 det(AB)=det(A)det(B)\det(AB) = \det(A)\det(B) in basis-free language.

This page is prerendered for SEO and accessibility. The interactive widgets above hydrate on JavaScript load.