# Transformations using matrices

> Edexcel International A-Level Further Mathematics · IAL FP1 2018 Spec (Issue 3)
> Source: https://www.owlsprep.com/study/edexcel-ial-further-math-fp1-transformations-using-matrices/

This guide covers all Edexcel IAL FP1 2D matrix transformation content, including core transformation matrices, combined transformations, inverse transformations, and determinant area scale factors, with exam-aligned worked examples.

**Prerequisites:** [Multiplying 2×2 matrices and finding inverses of 2×2 matrices](https://www.owlsprep.com/study/edexcel-ial-further-math-fp1-matrix-operations/); [Working with column vectors and basic coordinate geometry](https://www.owlsprep.com/study/edexcel-ial-further-math-fp1-vectors/)

## Learning objectives

- Represent 2D linear transformations using 2×2 matrices
- Recall and apply matrices for reflections, rotations, stretches, and enlargements centred at the origin
- Calculate combined transformation matrices in the correct reverse order of operations
- Use determinants as area scale factors and find inverse transformations where they exist

## Matrix Representation of 2D Linear Transformations

**Linear transformation** — A transformation that maps straight lines to straight lines, preserves the origin, and satisfies linearity: $M(a\mathbf{u} + b\mathbf{v}) = aM\mathbf{u} + bM\mathbf{v}$ for scalars $a,b$ and vectors $\mathbf{u},\mathbf{v}$.

*Example:* A reflection across the x-axis is a linear transformation, while a translation (shifting a shape without rotating/stretching) is not linear because it does not preserve the origin.

All linear transformations centred at the origin can be represented as 2×2 matrices acting on column vectors. The general rule for finding any transformation matrix is to calculate the image of the standard base vectors $\mathbf{i} = \begin{pmatrix}1\\0\end{pmatrix}$ and $\mathbf{j} = \begin{pmatrix}0\\1\end{pmatrix}$ under the transformation: the first column of the matrix is the image of $\mathbf{i}$, and the second column is the image of $\mathbf{j}$.

**Worked example:** Derive the matrix representing reflection in the x-axis.

1. Find the image of $\mathbf{i} = \begin{pmatrix}1\\0\end{pmatrix}$: reflection over the x-axis leaves this point unchanged, so the image is $\begin{pmatrix}1\\0\end{pmatrix}$.
2. Find the image of $\mathbf{j} = \begin{pmatrix}0\\1\end{pmatrix}$: reflection over the x-axis flips the sign of the y-coordinate, so the image is $\begin{pmatrix}0\\-1\end{pmatrix}$.
3. Construct the transformation matrix using these images as columns:
4. $$\begin{pmatrix}1 & 0 \\ 0 & -1\end{pmatrix}$$

> **Exam tip:** Always derive unknown transformation matrices using base vectors if you cannot recall them; this method works for all linear transformations centred at the origin and will earn you method marks even if your final matrix is incorrect.

*Calculator:* allowed

## Core Transformation Matrices

You need to be able to use the following core transformation matrices. Only the anticlockwise rotation and general line reflection matrices are provided in the formula book; all others must be derived using base vectors if you do not recall them.

| Transformation | Matrix | Key Note |
| --- | --- | --- |
| Reflection in x-axis | $\begin{pmatrix}1 & 0 \\ 0 & -1\end{pmatrix}$ | Derive via base vectors |
| Reflection in y-axis | $\begin{pmatrix}-1 & 0 \\ 0 & 1\end{pmatrix}$ | Derive via base vectors |
| Reflection in $y=x$ | $\begin{pmatrix}0 & 1 \\ 1 & 0\end{pmatrix}$ | Derive via base vectors |
| Reflection in $y=-x$ | $\begin{pmatrix}0 & -1 \\ -1 & 0\end{pmatrix}$ | Derive via base vectors |
| Anticlockwise rotation $\theta$ about O | $\begin{pmatrix}\cos \theta & -\sin \theta \\ \sin \theta & \cos \theta\end{pmatrix}$ | Given in formula book |
| Stretch parallel to x-axis, scale $k$ | $\begin{pmatrix}k & 0 \\ 0 & 1\end{pmatrix}$ | Derive via base vectors |
| Stretch parallel to y-axis, scale $k$ | $\begin{pmatrix}1 & 0 \\ 0 & k\end{pmatrix}$ | Derive via base vectors |
| Enlargement scale $k$ about O | $\begin{pmatrix}k & 0 \\ 0 & k\end{pmatrix}$ | Derive via base vectors |

**Worked example:** Find the image of point $(2, 3)$ after an anticlockwise rotation of 90° about the origin.

1. Substitute $\theta = 90^\circ$ into the standard rotation matrix: $\cos 90^\circ = 0$, $\sin 90^\circ = 1$, so the matrix is:
2. $$\begin{pmatrix}0 & -1 \\ 1 & 0\end{pmatrix}$$
3. Multiply the matrix by the column vector of the original point:
4. $$\begin{pmatrix}0 & -1 \\ 1 & 0\end{pmatrix}\begin{pmatrix}2 \\ 3\end{pmatrix} = \begin{pmatrix}0(2) + (-1)(3) \\ 1(2) + 0(3)\end{pmatrix} = \begin{pmatrix}-3 \\ 2\end{pmatrix}$$
5. The image point is $(-3, 2)$.

> **Exam tip:** For angles that are multiples of 90°, verify your rotation result by plotting the point and rotating it physically on a coordinate grid to avoid sign errors.

*Calculator:* allowed

## Combined Transformations

When you apply two transformations sequentially, the combined matrix is the product of the individual matrices, in **reverse order** of the transformation sequence. If you apply transformation B first, then transformation A, the combined matrix is $AB$, because the vector is first multiplied by B, then by A: $A(B\mathbf{v}) = (AB)\mathbf{v}$.

> **Critical Order Rule**
>
> Always write the later transformation on the LEFT of the matrix product. Mixing up this order is the most frequently tested error in this topic.

**Worked example:** A shape is first reflected in the line $y=x$, then rotated anticlockwise by 180° about the origin. Find the combined transformation matrix.

1. Identify individual matrices: reflection in $y=x$ (first transformation, B) = $\begin{pmatrix}0 & 1 \\ 1 & 0\end{pmatrix}$; 180° anticlockwise rotation (second transformation, A) = $\begin{pmatrix}-1 & 0 \\ 0 & -1\end{pmatrix}$.
2. Combine in reverse order: combined matrix = $AB$.
3. Calculate the product:
4. $$\begin{pmatrix}-1 & 0 \\ 0 & -1\end{pmatrix}\begin{pmatrix}0 & 1 \\ 1 & 0\end{pmatrix} = \begin{pmatrix}0 & -1 \\ -1 & 0\end{pmatrix}$$
5. This is the matrix for reflection in $y=-x$, which is a valid check of the result.

> **Exam tip:** If you are unsure of the order, test your combined matrix on a simple point like (1,0) by applying the transformations sequentially and comparing the result to the matrix multiplication output.

*Calculator:* allowed

## Inverse Transformations and Determinant as Area Scale Factor

**Area scale factor** — The ratio of the area of the image of a shape to the area of the original shape, equal to $|\det(M)|$. The sign of $\det(M)$ indicates orientation: positive for orientation preserved, negative for orientation reversed (e.g. reflections).

*Example:* A reflection has $\det(M) = -1$, so the area of the shape is unchanged, but its orientation is flipped.

An inverse transformation exists if and only if $\det(M) \neq 0$, and is represented by $M^{-1}$, which reverses the effect of $M$. For a sequence of transformations with combined matrix $AB$, the inverse transformation is $(AB)^{-1} = B^{-1}A^{-1}$ (reverse order of inverses).

**Worked example:** A transformation has matrix $M = \begin{pmatrix}2 & 0 \\ 0 & 3\end{pmatrix}$. A triangle with area 4 cm² is transformed using M. (a) Find the area of the image triangle. (b) Find the matrix of the inverse transformation.

1. Calculate the determinant of M:
2. $$\det(M) = (2)(3) - (0)(0) = 6$$
3. Area scale factor = $|\det(M)| = 6$, so image area = $4 \times 6 = 24$ cm².
4. Use the 2×2 inverse formula $M^{-1} = \frac{1}{\det(M)}\begin{pmatrix}d & -b \\ -c & a\end{pmatrix}$:
5. $$M^{-1} = \frac{1}{6}\begin{pmatrix}3 & 0 \\ 0 & 2\end{pmatrix} = \begin{pmatrix}\frac{1}{2} & 0 \\ 0 & \frac{1}{3}\end{pmatrix}$$

> **Exam tip:** You do not need to calculate the coordinates of all vertices of a shape to find its transformed area; simply multiply the original area by the absolute value of the determinant to save time.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Multiplying transformation matrices in the order of the verbal sequence (B then A = BA instead of AB)
  - Why it fails: Matrices act on column vectors from the left, so the later transformation must be applied after the first, so it goes on the left of the product.
  - Correct: If transformation B is applied first, then A, compute the product AB, not BA, and test with a sample point to confirm.
- **Wrong:** Using clockwise rotation angles directly in the given anticlockwise rotation matrix
  - Why it fails: The formula book only provides the matrix for anticlockwise rotation about the origin.
  - Correct: For a clockwise rotation by $\theta$, use the anticlockwise matrix with $\theta$ replaced by $-\theta$, giving $\begin{pmatrix}\cos \theta & \sin \theta \\ -\sin \theta & \cos \theta\end{pmatrix}$.
- **Wrong:** Forgetting to take the absolute value of the determinant when calculating area scale factor
  - Why it fails: A negative determinant only indicates orientation reversal, not negative area.
  - Correct: Multiply the original area by $|\det(M)|$ to find the area of the image shape.
- **Wrong:** Deriving transformation matrices using row vectors instead of column vectors
  - Why it fails: The Edexcel specification uses the column vector convention, where image = M * vector, not vector * M.
  - Correct: Use the image of column vectors $\begin{pmatrix}1\\0\end{pmatrix}$ and $\begin{pmatrix}0\\1\end{pmatrix}$ as columns of your transformation matrix, not rows.
- **Wrong:** Assuming inverse transformations exist for all matrices
  - Why it fails: Transformations with determinant zero are singular, and collapse shapes to a line or point, so they cannot be reversed.
  - Correct: First check that $\det(M) \neq 0$ before calculating an inverse transformation matrix.

## Cheatsheet

| Transformation | Matrix | Key Property |
| --- | --- | --- |
| Reflection in x-axis | $\begin{pmatrix}1&0\\0&-1\end{pmatrix}$ | $\det = -1$ |
| Reflection in y-axis | $\begin{pmatrix}-1&0\\0&1\end{pmatrix}$ | $\det = -1$ |
| Reflection in $y=x$ | $\begin{pmatrix}0&1\\1&0\end{pmatrix}$ | $\det = -1$ |
| Reflection in $y=-x$ | $\begin{pmatrix}0&-1\\-1&0\end{pmatrix}$ | $\det = -1$ |
| Anticlockwise rotation $\theta$ | $\begin{pmatrix}\cos\theta & -\sin\theta \\ \sin\theta & \cos\theta\end{pmatrix}$ | $\det = 1$ |
| Stretch x-axis scale $k$ | $\begin{pmatrix}k&0\\0&1\end{pmatrix}$ | $\det = k$ |
| Stretch y-axis scale $k$ | $\begin{pmatrix}1&0\\0&k\end{pmatrix}$ | $\det = k$ |
| Enlargement scale $k$ | $\begin{pmatrix}k&0\\0&k\end{pmatrix}$ | $\det = k^2$ |
| Combined B then A | $AB$ | $\det = \det(A)\det(B)$ |
| Inverse transformation | $M^{-1}$ | $\det = 1/\det(M)$ |

## What's next

Now that you have mastered 2D matrix transformations for FP1, you can apply these skills to past paper questions, which often combine this topic with matrix operations and coordinate geometry problems. Make sure you practice enough questions to avoid common order-of-multiplication errors, which cost many students marks each year. If you are studying higher further maths units, you will encounter matrix transformations again in FP3, where they are extended to 3 dimensions. You should also review matrix inverse and determinant calculation to ensure you can answer full 6-8 mark exam questions on combined and inverse transformations.

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/edexcel-ial-further-math-fp1-transformations-using-matrices/
