Skip to main content
Northern IrelandFurther MathsSyllabus dot point

How do matrices encode linear transformations, and how do you invert a 2x2 matrix?

Matrix algebra including addition, multiplication and the identity, the determinant and inverse of a 2x2 matrix, and matrices as linear transformations of the plane including rotations, reflections and enlargements.

A CCEA AS Further Maths answer on matrix addition and multiplication, the identity matrix, the determinant and inverse of a 2x2 matrix, singular matrices, and how matrices represent rotations, reflections and enlargements of the plane.

Generated by Claude Opus 4.812 min answer

Reviewed by: AI editorial process; not yet individually human-reviewed

Have a quick question? Jump to the Q&A page

Jump to a section
  1. What this dot point is asking
  2. The answer
  3. Examples in context
  4. Try this

What this dot point is asking

CCEA wants you to handle matrix algebra (addition, scalar multiples, matrix products and the identity), find the determinant and inverse of a 2×22 \times 2 matrix, recognise a singular matrix, and use matrices to represent transformations of the plane such as rotations, reflections and enlargements. Using an inverse to solve simultaneous equations is a standard exam task.

The answer

Matrix algebra

For 2×22 \times 2 matrices the product is

(abcd)(efgh)=(ae+bgaf+bhce+dgcf+dh).\begin{pmatrix} a & b \\ c & d \end{pmatrix}\begin{pmatrix} e & f \\ g & h \end{pmatrix} = \begin{pmatrix} ae + bg & af + bh \\ ce + dg & cf + dh \end{pmatrix}.

The identity matrix

The determinant and inverse of a 2x2 matrix

Matrices as transformations

A combined transformation is the product of the matrices, applied right to left: B\mathbf{B} then A\mathbf{A} is AB\mathbf{AB}.

Examples in context

Example 1. Computer graphics. Every rotation, scaling and reflection of an on-screen shape is a matrix multiplying the coordinates of its vertices. Combining moves into a single product matrix lets a graphics card transform thousands of points with one operation, exactly the "multiply the matrices" idea.

Example 2. Solving linear systems. Writing Ax=b\mathbf{A}\mathbf{x} = \mathbf{b} and computing x=A1b\mathbf{x} = \mathbf{A}^{-1}\mathbf{b} is the matrix method for simultaneous equations. A singular matrix (det=0\det = 0) signals that the equations have no unique solution, which is why the determinant test matters.

Try this

Q1. Find det(4231)\det\begin{pmatrix} 4 & 2 \\ 3 & 1 \end{pmatrix}. [1 mark]

  • Cue. det=(4)(1)(2)(3)=46=2\det = (4)(1) - (2)(3) = 4 - 6 = -2.

Q2. Write down the matrix for an enlargement, centre the origin, scale factor 33. [1 mark]

  • Cue. (3003)\begin{pmatrix} 3 & 0 \\ 0 & 3 \end{pmatrix}.

Q3. Show that (2412)\begin{pmatrix} 2 & 4 \\ 1 & 2 \end{pmatrix} is singular. [2 marks]

  • Cue. det=(2)(2)(4)(1)=44=0\det = (2)(2) - (4)(1) = 4 - 4 = 0, so it has no inverse.

Exam-style practice questions

Practice questions written in the style of CCEA exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.

CCEA AS 20206 marksThe matrix is A=(3152)\mathbf{A} = \begin{pmatrix} 3 & 1 \\ 5 & 2 \end{pmatrix}. Find detA\det\mathbf{A} and A1\mathbf{A}^{-1}, and hence solve the simultaneous equations 3x+y=43x + y = 4, 5x+2y=95x + 2y = 9.
Show worked answer →

The determinant is detA=(3)(2)(1)(5)=65=1.\det\mathbf{A} = (3)(2) - (1)(5) = 6 - 5 = 1.

The inverse swaps the leading diagonal, negates the other diagonal and divides by the determinant:

A1=11(2153)=(2153).\mathbf{A}^{-1} = \dfrac{1}{1}\begin{pmatrix} 2 & -1 \\ -5 & 3 \end{pmatrix} = \begin{pmatrix} 2 & -1 \\ -5 & 3 \end{pmatrix}.

Writing the equations as A(xy)=(49)\mathbf{A}\begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} 4 \\ 9 \end{pmatrix} gives

(xy)=A1(49)=(2(4)1(9)5(4)+3(9))=(17).\begin{pmatrix} x \\ y \end{pmatrix} = \mathbf{A}^{-1}\begin{pmatrix} 4 \\ 9 \end{pmatrix} = \begin{pmatrix} 2(4) - 1(9) \\ -5(4) + 3(9) \end{pmatrix} = \begin{pmatrix} -1 \\ 7 \end{pmatrix}.

So x=1x = -1, y=7y = 7. Markers reward the determinant, the correct inverse formula, and using it to solve the system.

CCEA AS 20185 marksThe matrix R\mathbf{R} represents an anticlockwise rotation of 9090^\circ about the origin. Write down R\mathbf{R}, and find the image of the point (2,3)(2, -3) under this rotation.
Show worked answer →

An anticlockwise rotation through angle θ\theta about the origin has matrix (cosθsinθsinθcosθ)\begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix}.

For θ=90\theta = 90^\circ, cos90=0\cos 90^\circ = 0 and sin90=1\sin 90^\circ = 1, so

R=(0110).\mathbf{R} = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}.

The image of (2,3)(2, -3) is

(0110)(23)=(0(2)+(1)(3)1(2)+0(3))=(32).\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}.

So the image is (3,2)(3, 2). Markers reward the correct rotation matrix and the matrix-vector multiplication.

Related dot points

Sources & how we know this