1. Matrix Operations
Matrices can have at most 3 rows and 3 columns in this syllabus. The key operations are addition, subtraction, and multiplication — each with strict size conditions.
Addition / Subtraction
Only possible when matrices have the same dimensions. Add corresponding entries.
Multiplication
A is m×n, B is n×p → AB is m×p. The inner dimensions must match.
2. Determinants
2×2 Determinant
3×3 Determinant — Cofactor Expansion Along Row 1
For a 3×3 matrix M = [[a,b,c],[d,e,f],[g,h,i]]:
The cofactor signs for a 3×3 matrix follow the checkerboard: top-left is +, then alternates. The entry a has cofactor +(ei−fh), b has −(di−fg), c has +(dh−eg). Always apply this pattern.
3. Inverse Matrices
2×2 Inverse
3×3 Inverse — Matrix of Cofactors Method
Key Property: (AB)⁻¹ = B⁻¹A⁻¹
4. 2D Geometric Transformations
A 2×2 matrix M transforms a point (x, y) to M·[x, y]ᵀ. The images of basis vectors (1,0) and (0,1) form the columns of M.
The first column of M = image of (1,0). The second column = image of (0,1). Apply the transformation to these two basis vectors to build the matrix.
[sinθ cosθ]
[1 0]
[0 −1]
[ 0 1]
[0 k]
[0 1]
[0 1]
[1 0]
Composition of Transformations — Order Matters
The matrix product AB represents the transformation B applied first, then A applied to the result. This is because we multiply on the left:
Area Scale Factor
5. Invariant Points and Invariant Lines
Invariant Points
A point P is invariant under transformation M if M maps P to itself: M·P = P.
The origin (0,0) is always an invariant point for any linear transformation through the origin.
Invariant Lines
A line is invariant if every point on the line maps to a point that is also on the line (not necessarily the same point).
Method for Finding Invariant Lines Through the Origin
- 1Let a general point on the line y = mx be (t, mt) for any scalar t.
- 2Apply the matrix M to this point: M·[t, mt]ᵀ = [x', y']ᵀ.
- 3Require that the image lies on the same line: y' = m·x'.
- 4This gives an equation in m — solve for m to find the gradient(s) of invariant lines.
For invariant lines y = mx + c (c ≠ 0), let a general point be (t, mt + c) and require the image also satisfies y = mx + c. This gives conditions on both m and c.
Verify: check that M·M⁻¹ = I by multiplying row 1 of M by column 1 of M⁻¹: (2·14+1·2−1·(−3))/33 = (28+2+3)/33 = 33/33 = 1 ✓
Also note det(AB) = det(A)·det(B) = (−1)(1) = −1 ✓. This confirms orientation is reversed (reflection).
Invariant points lie on the line y = −2x — every point on this line is fixed.
Let point (t, mt) lie on y = mx. Apply M:
Note: y = −2x is the line of invariant points (from part a). y = x is an invariant line where points move along it but are not fixed.
Wait — from part (b), the invariant lines through the origin have gradients m = −2 and m = 1. We need a line y = 2x + c. But m = 2 is not an eigenvalue. So lines y = 2x + c are not invariant for this matrix. Let us instead find all invariant lines y = x + c (gradient 1):
This holds for any value of c — every line y = x + c is an invariant line! This makes sense because y = x (through origin) is an invariant line, and the transformation acts by translating along lines parallel to y = x.
Interactive Transformation Laboratory
Enter a 2×2 matrix and watch how it transforms a unit square. Invariant lines are shown automatically.
Matrix Inverse Calculator
Practice Questions
⚠ Wait: 4t+c ≠ 4t−c unless c=0. So y=2x+c is NOT invariant for general c. But y=2x (c=0) is invariant (it's the m=2 line). Check c=0: image [2t,4t]: y=4t=2(2t) ✓. The question as stated has an error — y=2x (c=0) is invariant, not y=2x+c for c≠0.
Formula Reference Sheet
Complete reference for Matrices — Cambridge 9231 P1, Section 1.4.
- Check the sign pattern for 3×3 cofactors before every calculation: + − + / − + − / + − +. One sign error cascades through the whole inverse.
- For composition "B then A": the matrix is AB, not BA. Write the second transformation on the right.
- For matrix equations: XA = B gives X = BA⁻¹ (post-multiply); AX = B gives X = A⁻¹B (pre-multiply). The position of A⁻¹ matters.
- For invariant lines: always state whether each line through the origin has all points fixed or just the line as a whole invariant. These are different statements.
- Verify 3×3 inverses by checking at least one entry of M·M⁻¹ equals the corresponding identity entry.
- For solving 3×3 systems: write the system as A·x = b explicitly, then x = A⁻¹b. This is cleaner than elimination in exams.