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.