IB Maths AI HLMatrix TransformationsPaper 1 & 2Area scale factor~7 min read
Determinant of a Transformation Matrix
For T = (abcd), det T = ad − bc. The absolute value |det T| is the area scale factor: area of image = |det T| × area of object. Sign of det T tells you about orientation — negative means the shape was flipped (reflected).
📘 What you need to know
Formula: det T = ad − bc for T = (abcd). In formula booklet; also on GDC.
Area scale factor = |det T|, so area of image = |det T| × area of object.
Three cases:
· |det T| > 1 ⇒ area grows
· |det T| = 1 ⇒ area unchanged (rotations, reflections)
· |det T| < 1 ⇒ area shrinks
Sign of det T:
· det T > 0 ⇒ orientation preserved
· det T < 0 ⇒ orientation reversed (a reflection occurred)
· det T = 0 ⇒ shape collapses to a line (no inverse exists)
Composite: det(ST) = det(S) · det(T). So area scale factor of ST = |det S| · |det T|.
Power: det(Tn) = (det T)n.
Inverse: det(T−1) = 1/det T (only defined if det T ≠ 0).
Area scale factor — the geometric meaning
The unit square has area 1. After T, the unit square becomes the parallelogram with sides T(1, 0) and T(0, 1) — i.e. the columns of T. That parallelogram has area |ad − bc|. So every shape’s area gets scaled by the same factor |det T| under T.
Area scale factor
area of image = |det T| × area of object where det T = ad − bcdet T < 0 ⇒ orientation flipped; |det T| = 1 ⇒ area preserved
Under T = (3112), det T = 3(2) − 1(1) = 5. Wait — double-check: area of image parallelogram = |det T| = 5, so the unit square (area 1) maps to a region of area 5. Every shape’s area gets multiplied by 5 under T.
Sign of det T — orientation
The sign tells you whether T flipped the shape:
Quick check: det(rotation) = +1, det(reflection) = −1, det(enlargement k) = k2, det(stretch k) = k. A negative det T always signals a reflection happened somewhere in the transformation.
🧭 Recipe — det T problems
Compute det T = ad − bc (or use GDC).
Area scale factor = |det T|.
Area of image = |det T| × area of object.
Sign of det T: + keeps orientation, − flips it (reflection involved).
For composites: det(ST) = det(S) × det(T); for powers: det(Tn) = (det T)n.
Finding unknowns: set |det T| = required scale factor and solve for the unknown entry.
Worked examples
WE 1
Find the area of the transformed triangle
Isosceles triangle ABC has A(3, 1), B(15, 1), C(9, 9). Triangle is transformed by T = (32−12). Find the area of the image.
area of ABC: base 12, height 8area = ½ · 12 · 8 = 48det Tdet T = 3(2) − 2(−1) = 6 + 2 = 8area of image = |det T| · area of objectarea = 8 · 48area = 384 square units
WE 2
Find unknown entry from area scale
Triangle ABC from WE 1 is now transformed by U = (a−23a²), where a ∈ ℤ. Given that the image has area twice the object, find a.
det Udet U = a · a² − (−2)(3) = a³ + 6area factor = 2, so |det U| = 2|a³ + 6| = 2case 1: a³ + 6 = 2 → a³ = −4 (not integer)case 2: a³ + 6 = −2 → a³ = −8 → a = −2 ✓a = −2always check the ± case when working from |det T|.
WE 3
Sign of det — orientation check
T = (0110). Find det T and state whether T preserves or reverses orientation.
det T = ad − bc= 0(0) − 1(1) = −1sign is negative → orientation reversed|det T| = 1 → area unchangeddet T = −1; T reverses orientation (reflection)this T is reflection in y = x — and reflections always give det = ±1 with sign −1.
WE 4
Determinant of a composite
S = (2003), T = (1−121). A shape of area 5 is transformed by “T then S”. Find the area of the final image.
det S and det T separatelydet S = 2(3) − 0(0) = 6det T = 1(1) − (−1)(2) = 3det(ST) = det S · det Tdet(ST) = 6 · 3 = 18area of final imagearea = |18| · 5 = 90area = 90 square unitsmultiplying dets directly is faster than computing ST first.
WE 5
Determinant of a power
T = (2111). A square of area 4 is transformed by T5. Find the area of the image.
det Tdet T = 2(1) − 1(1) = 1det(T5) = (det T)5det(T5) = 15 = 1area of imagearea = |1| · 4 = 4area = 4 square units (unchanged)det T = 1 means T preserves area, no matter how many times you apply it.
WE 6
Singular matrix — when det T = 0
For which value of k does T = (k236) map every triangle to a degenerate one (zero area)? Describe what happens geometrically.
zero area ⇒ det T = 0det T = 6k − 6 = 0k = 1check columns of T at k = 1T = (1236); col 2 = 2 · col 1k = 1; T squashes every shape onto the line y = 3xdet T = 0 ⇔ columns are parallel ⇔ image is 1-dimensional. No inverse exists.
💡 Top tips
Always take |det T| for area — areas are never negative, even when det T is.
Composite shortcut: det(ST) = det S · det T. Skip computing ST when only the area factor is needed.
Identify reflections quickly: det T < 0 ⇒ reflection somewhere. det = ±1 with |det| = 1 ⇒ rigid motion (rotation or reflection).
GDC has det built in — type det(T) for 2×2 matrices instantly.
Unknown coefficient: when given an area condition, set |det T| = scale factor and solve. Always check both signs.
⚠ Common mistakes
Forgetting absolute value — det T = −5 doesn’t mean area scales by −5; it scales by 5 (with orientation flipped).
Computing ab − cd instead of ad − bc — the formula uses the diagonals, not the rows.
Adding determinants: det(S + T) ≠ det S + det T. Determinants multiply for composites; they don’t add.
Missing the negative case when solving |det T| = n — there are two equations: det T = n and det T = −n.
Confusing det T with the matrix itself — det T is a single number; T is a 2×2 array.
Chapter complete — you now have all four Matrix Transformations sub-topics: transformation by a matrix (Tv + (e, f)), matrices of geometric transformations (rotation, reflection, enlargement, stretch), composite transformations (ST), and determinant as area scale factor (|det T|). Together these cover every Paper 1 & 2 matrix-transformation question on the AI HL syllabus.
Need help with Matrix Transformations?
Get 1-on-1 help from an IB examiner who knows exactly what Paper 1 & 2 are looking for.