Determinants and Geometric Scaling Factors

Category: Linear Algebra & Multi-Dimensional Transformations

1. What is a Determinant?

In linear algebra, a Determinant is a scalar value computed from a square matrix. While textbooks often teach it as a long sequence of arithmetic multiplications, its true geometric meaning is beautiful: the determinant calculates the exact area or volume scaling factor of a space transformation map. If a matrix has a determinant of 3, it means any shape transformed by that matrix will grow to exactly 3 times its original area.

2. Calculation Form for a 2x2 Matrix

For a standard two-by-two matrix array, the determinant represents the difference between the diagonal cross-products, which is used constantly to verify if a matrix can be inverted.

det(A) = |a b|
|c d| = ad - bc

3. Mathematical Proof of the Multiplicative Property

Let us rigorously prove that the determinant of a product of two 2x2 matrices is equal to the product of their individual determinants, written as det(AB) = det(A) · det(B).

Let Matrix A = [a, b; c, d] -> det(A) = ad - bc
Let Matrix B = [e, f; g, h] -> det(B) = eh - fg

Step 1: Compute the product matrix AB using Row × Column operations:
AB = [ (ae + bg), (af + bh) ]
[ (ce + dg), (cf + dh) ]

Step 2: Apply the 2x2 determinant formula (ad - bc) directly to matrix AB:
det(AB) = (ae + bg)(cf + dh) - (af + bh)(ce + dg)

Step 3: Expand both binomial products algebraically:
Term 1: aecf + aedh + bgcf + bgdh
Term 2: afce + afdg + bhce + bhdg

Step 4: Subtract Term 2 from Term 1, cancelling matching items (aecf cancels afce; bgdh cancels bhdg):
det(AB) = aedh + bgcf - afdg - bhce

Step 5: Rearrange the terms to group common elements:
det(AB) = ad(eh - fg) - bc(eh - fg)

Step 6: Factor out the common polynomial term (eh - fg):
det(AB) = (ad - bc)(eh - fg)

Conclusion: Substitute our original single determinant metrics back into the equation:
det(AB) = det(A) · det(B)

Q.E.D. This proof establishes that spatial scaling properties compound perfectly across successive coordinate transformations.

← Back to Unit 4 Index