AQA A-Level Further Maths: Matrices — In-Depth Revision Guide (7367)
AQA A-Level Further Maths: Matrices — In-Depth Revision Guide (7367)
Matrices are one of the most important and most useful topics in AQA A-Level Further Mathematics (7367). A matrix is a compact way of packaging a whole system of numbers, and once you learn the rules of matrix algebra you can rotate and reflect the plane, solve simultaneous equations in three unknowns, and uncover the hidden directions along which a transformation simply stretches. The topic also reaches far beyond the exam: matrices are the language of computer graphics, machine learning, quantum mechanics, structural engineering and economics, so the time you invest here pays dividends in almost any STEM degree.
This guide is the in-depth companion for AQA's matrices course. It runs from matrix operations and multiplication, through determinants and inverses, into solving systems of equations, the geometry of linear transformations in 2D and 3D, and then the deeper structural ideas — eigenvalues and eigenvectors, diagonalisation, and the Cayley-Hamilton theorem. Each section gives the core skills, a worked example, the common pitfalls, and a link to the matching lesson.
The aim is not to replace working through problems. Matrix algebra becomes fast only once you have done enough multiplications, determinants and inverses that the patterns are automatic. The aim of this guide is to give you a clear map of what AQA can examine, in roughly the order they teach it, so your revision is targeted rather than scattered.
What the AQA 7367 Specification Covers
AQA A-Level Further Mathematics (7367) is a linear qualification assessed through three written papers, each 2 hours long, each worth 100 marks, and each carrying 33⅓% of the marks. Papers 1 and 2 are compulsory and cover the Pure content — which is where matrices, complex numbers and further calculus all sit. Paper 3 is the optional applications paper, on which you choose two of Mechanics, Statistics and Discrete Mathematics. Matrices are compulsory Pure, so they can appear on either Paper 1 or Paper 2, frequently as a long structured question that runs from a transformation through to eigenvectors.
Further Mathematics is one of the most highly valued A-Levels for STEM study, and is effectively expected for mathematics and many engineering and physics courses at Oxbridge and other competitive universities. The matrix and transformation content also rewards exactly the kind of careful, structured reasoning that the STEP and MAT admissions tests look for.
The table below shows the matrices sub-topics, what each involves, and why it matters across the course.
| Topic | What it involves | Why it matters |
|---|---|---|
| Matrix operations | Addition, scalar multiplication, the zero and identity matrices | The basic algebra of matrices |
| Matrix multiplication | Row-by-column products, non-commutativity | The operation that does all the work |
| Determinants (2×2 and 3×3) | A single number measuring area/volume scaling | Tests invertibility; geometry of transformations |
| Inverse matrices | Undoing a transformation; A−1 | Solving equations; reversing maps |
| Solving systems of equations | Writing Ax=b and inverting | Three-variable simultaneous equations |
| Linear transformations in 2D | Rotations, reflections, enlargements, shears | The geometric meaning of 2×2 matrices |
| Linear transformations in 3D | Rotations and reflections in space | Extends the geometry to three dimensions |
| Eigenvalues and eigenvectors | Directions a matrix only scales | The deep structure of a transformation |
| Diagonalisation | Writing A=PDP−1 | Computing high powers; decoupling systems |
| The Cayley-Hamilton theorem | A matrix satisfies its own characteristic equation | Inverses and powers without extra work |
These topics build on one another closely. Multiplication underpins everything; determinants decide invertibility; inverses solve systems; transformations give the geometry; and eigenvalues, diagonalisation and Cayley-Hamilton are the structural payoff. Revising them in order pays off.
Matrix Operations
A matrix is a rectangular array of numbers, described by its order m×n — m rows by n columns. The individual numbers are its entries (or elements). The basic operations are gentle: you add two matrices of the same order by adding corresponding entries, and you multiply by a scalar by multiplying every entry by that number. Matrices of different orders cannot be added at all.
Two special matrices recur constantly. The zero matrix has every entry zero and behaves like 0 in ordinary arithmetic. The identity matrix I is square, with 1s down the leading diagonal and 0s elsewhere, and behaves like 1: multiplying any matrix by I (of the right order) leaves it unchanged. Holding these two roles in mind makes matrix algebra feel much more like ordinary algebra.
A short worked example. Given A=(1320) and B=(42−15), find 2A−B. Scale A first: 2A=(2640). Subtract entry by entry: 2A−B=(2−46−24−(−1)0−5)=(−245−5).
A common pitfall is trying to add matrices of different orders, which is undefined. Another is forgetting to apply the scalar to every entry, including the zeros and the diagonal. For practice across the basic operations, see the Introduction to Matrices lesson.
Matrix Multiplication
Matrix multiplication is the operation that gives matrices their power, and it is the one most worth drilling until it is automatic. To multiply AB, you take the dot product of each row of A with each column of B: the entry in row i, column j of the product is the sum of products of the entries of row i of A with column j of B. For this to work, the number of columns of A must equal the number of rows of B — an m×n matrix times an n×p matrix gives an m×p result.
The single most important fact, and the one AQA tests repeatedly, is that matrix multiplication is not commutative: in general AB=BA. Sometimes BA is not even defined when AB is. Geometrically this is obvious — rotating then reflecting is not the same as reflecting then rotating. Order matters, always.
A short worked example. With A=(1324) and B=(0512), compute AB. The top-left entry is (1)(0)+(2)(5)=10; the top-right is (1)(1)+(2)(2)=5; the bottom-left is (3)(0)+(4)(5)=20; the bottom-right is (3)(1)+(4)(2)=11. So AB=(1020511). Computing BA gives a different matrix — try it and confirm.
A common pitfall is multiplying entrywise like addition; multiplication is row-by-column, not element-by-element. Another is reversing the order out of habit. For worked products of various orders, see the Matrix Multiplication lesson.
Determinants (2×2 and 3×3)
The determinant of a square matrix is a single number that captures whether the matrix is invertible and, geometrically, the factor by which the transformation scales area (in 2D) or volume (in 3D). For a 2×2 matrix,
det(acbd)=ad−bc.
For a 3×3 matrix you expand along a row or column using cofactors (the "minors with alternating signs" method). The leading sign pattern across the top row is +,−,+, and each term is the entry times the determinant of the 2×2 matrix left when its row and column are deleted.
The most important property is the link to invertibility: a matrix is invertible if and only if its determinant is non-zero. A matrix with determinant zero is called singular and cannot be inverted; geometrically it collapses the plane (or space) onto a line or point, so the transformation cannot be undone. A useful multiplicative property is det(AB)=det(A)det(B).
A worked example. Find the determinant of 210132014 by expanding along the top row. This is 2det(3214)−1det(1014)+0=2(12−2)−1(4−0)+0=20−4=16. Since this is non-zero, the matrix is invertible.
A common pitfall is forgetting the alternating sign pattern in a 3×3 cofactor expansion. Another is computing bc−ad instead of ad−bc for the 2×2 case. For both sizes worked carefully, see the Determinants lesson.
Inverse Matrices
The inverse of a square matrix A is the matrix A−1 such that AA−1=A−1A=I. It exists exactly when detA=0. For a 2×2 matrix there is a clean formula:
(acbd)−1=ad−bc1(d−c−ba).
In words: swap the leading-diagonal entries, negate the other two, and divide by the determinant. For a 3×3 matrix the inverse is found via the matrix of cofactors: form the cofactor matrix, transpose it to get the adjugate, and divide by the determinant. AQA expects you to handle the 3×3 inverse, and it is mostly careful bookkeeping.
A vital property for solving equations is that the inverse of a product reverses the order: (AB)−1=B−1A−1. This mirrors getting dressed and undressed — to undo "socks then shoes" you take off the shoes first.
A worked example. Find the inverse of A=(4231). The determinant is (4)(1)−(3)(2)=4−6=−2. Applying the formula: A−1=−21(1−2−34)=(−21123−2). Multiply back to check it gives I.
A common pitfall is forgetting to divide by the determinant, or dividing only some entries. Another is reversing the swap-and-negate pattern. For the 3×3 adjugate method step by step, see the Inverse Matrices lesson.
Solving Systems of Equations with Matrices
A system of simultaneous equations can be written compactly as a single matrix equation Ax=b, where A holds the coefficients, x is the column of unknowns, and b is the column of constants. If A is invertible, the solution is simply x=A−1b. This is the matrix method's headline application and a reliable route through three-variable systems that would be fiddly by elimination.
The determinant also tells you about the nature of the solution. If detA=0, there is a unique solution. If detA=0, the matrix is singular and the system has either no solutions (the equations are inconsistent — the planes have no common point) or infinitely many (the equations are dependent — the planes meet in a common line). Recognising the singular case is part of the question.
A worked example. Solve {2x+y=5x+3y=10 using matrices. In matrix form A=(2113), b=(510). The determinant is 6−1=5, so A−1=51(3−1−12). Then x=A−1b=51(3(5)−1(10)−1(5)+2(10))=51(515)=(13), so x=1, y=3.
A common pitfall is writing the matrix equation as x=bA−1, the wrong order — you must pre-multiply by A−1, giving x=A−1b. Another is missing the geometric interpretation of a zero determinant. For the three-variable case and the singular-system analysis, see the Solving Systems with Matrices lesson.
Linear Transformations in 2D
Every 2×2 matrix represents a linear transformation of the plane — a map that sends the position vector (xy) to A(xy), keeps the origin fixed, and sends straight lines to straight lines. The key trick for finding the matrix of a known transformation is to track where the unit vectors (10) and (01) go: their images become the first and second columns of the matrix.
| Transformation | Matrix |
|---|---|
| Rotation anticlockwise by θ about the origin | (cosθsinθ−sinθcosθ) |
| Reflection in the x-axis | (100−1) |
| Reflection in the line y=x | (0110) |
| Enlargement, scale factor k, centre origin | (k00k) |
The determinant has a clean geometric meaning here: ∣detA∣ is the area scale factor of the transformation, and a negative determinant signals that the transformation reverses orientation (as a reflection does). Composing transformations is just matrix multiplication — but remember the order. To do transformation P first and then Q, you apply the matrix QP (the second transformation sits on the left), because it acts on the vector last.
A worked example. Find the single matrix for "reflect in the x-axis, then rotate 90∘ anticlockwise." The reflection is P=(100−1); the rotation is Q=(01−10). The combined matrix is QP=(01−10)(100−1)=(0110), which is reflection in y=x.
A common pitfall is composing in the wrong order — for "first P, then Q" you need QP, not PQ. Another is muddling the signs in the rotation matrix. For the unit-vector method and orientation, see the Linear Transformations in 2D lesson.
Linear Transformations in 3D
The same ideas extend to three dimensions, where 3×3 matrices transform space. The unit-vector method still works: the images of i,j,k form the three columns of the matrix. AQA focuses on rotations about the coordinate axes and reflections in the coordinate planes.
For example, a rotation about the x-axis leaves the x-coordinate untouched and rotates the y- and z-coordinates exactly like a 2D rotation:
Rx(θ)=1000cosθsinθ0−sinθcosθ.
Reflections in the coordinate planes are even simpler: reflection in the xy-plane negates the z-coordinate, giving a matrix that is the identity with a −1 in the bottom-right corner. As in 2D, ∣det∣ is the volume scale factor, and a negative determinant means orientation is reversed. Composition is again matrix multiplication in reverse order.
A worked example. Find the image of the point (1,2,3) under reflection in the xy-plane. The matrix is 10001000−1, so the image is 12−3 — the z-coordinate flips sign while x and y are unchanged.
A common pitfall is putting the rotation block in the wrong rows and columns — a rotation about the x-axis fixes the x-row and x-column, with the cos/sin block in the y,z positions. Another is dropping a sign in the off-diagonal entries. For the standard 3D matrices and worked images, see the Linear Transformations in 3D lesson.
Eigenvalues and Eigenvectors
Most transformations move and rotate vectors, but for any square matrix there are usually special directions that are merely scaled, not rotated. A non-zero vector v is an eigenvector of A, with eigenvalue λ, if
Av=λv.
In words: applying the transformation to an eigenvector just stretches it by the factor λ, leaving its direction unchanged (or reversed, if λ is negative). These directions reveal the deep structure of a transformation, and they are the key to diagonalisation and to computing high powers.
The method is systematic. Rearranging gives (A−λI)v=0, which has non-zero solutions only when A−λI is singular — that is, when the characteristic equation det(A−λI)=0 holds. Solve this for the eigenvalues λ. Then, for each eigenvalue, substitute back into (A−λI)v=0 and solve the resulting system for the corresponding eigenvector (which is determined only up to a scalar multiple).
A worked example. Find the eigenvalues and eigenvectors of A=(2112). The characteristic equation is det(2−λ112−λ)=(2−λ)2−1=0, giving (2−λ)2=1, so λ=1 or λ=3. For λ=3: (A−3I)v=(−111−1)v=0 gives −x+y=0, so an eigenvector is (11). For λ=1, the same method gives (1−1).
A common pitfall is solving det(A−λI)=0 but then forgetting to find the eigenvectors, or quoting v=0 (which is excluded by definition — eigenvectors are non-zero). Another is sign-slips in expanding the characteristic determinant. For the full method on 2×2 and 3×3 matrices, see the Eigenvalues and Eigenvectors lesson.
Diagonalisation
If a matrix A has enough independent eigenvectors, it can be diagonalised: written as
A=PDP−1,
where D is the diagonal matrix of eigenvalues and P is the matrix whose columns are the corresponding eigenvectors, taken in the same order. Diagonal matrices are wonderfully easy to work with, so diagonalisation turns hard problems into easy ones.
The headline application is computing high powers. Because An=PDnP−1, and raising a diagonal matrix to a power just raises each diagonal entry to that power, you can find A10 or A100 with almost no effort. This is enormously cheaper than multiplying A by itself ten times, and it underlies the analysis of recurrence relations, population models and Markov chains.
A worked example. Using the matrix A=(2112) from above, with eigenvalues 1 and 3 and eigenvectors (1−1) and (11), take P=(1−111) and D=(1003). Then An=P(1003n)P−1, and substituting any n gives the power directly.
A common pitfall is mismatching the order of eigenvalues in D with the order of eigenvectors in P — the kth column of P must be the eigenvector for the kth diagonal entry of D. Another is forgetting that diagonalisation needs a full set of independent eigenvectors. For the powers-of-a-matrix method, see the Diagonalisation lesson.
The Cayley-Hamilton Theorem
The Cayley-Hamilton theorem is one of the most elegant results in the matrix course: every square matrix satisfies its own characteristic equation. If the characteristic equation of a 2×2 matrix is λ2−(trA)λ+detA=0, then substituting the matrix for λ gives the true matrix identity
A2−(trA)A+(detA)I=O,
where trA is the trace (the sum of the leading-diagonal entries) and O is the zero matrix. The theorem holds for any square matrix, not just 2×2.
This is not merely pretty — it is a labour-saving device. Rearranging the identity expresses A2 in terms of A and I, which lets you reduce any power of A to a linear combination of A and I, avoiding repeated multiplication. It also gives a quick route to the inverse: rearranging to make I the subject and factoring out A shows that A−1 is a simple linear expression in A, provided detA=0.
A worked example. For A=(1324), the trace is 1+4=5 and the determinant is 4−6=−2, so Cayley-Hamilton gives A2−5A−2I=O, i.e. A2=5A+2I. Rearranging for the inverse, A(A−5I)=2I, so A−1=21(A−5I)=21(−432−1). This agrees with the standard inverse formula.
A common pitfall is mis-stating the characteristic equation, especially dropping the detA constant or getting the sign of the trace term wrong. Another is forgetting that the constant must multiply the identity I, not appear as a bare number, in a matrix equation. For power-reduction and inverse derivations, see the Cayley-Hamilton Theorem lesson.
Common Mark-Loss Patterns Across Matrices
Across the whole topic, a small set of habits accounts for a disproportionate share of lost marks. Most are not about content you do not know — they are about content you do know, applied carelessly under exam pressure.
- Multiplying matrices entrywise instead of row-by-column, or reversing the order of a product.
- Forgetting the alternating sign pattern in a 3×3 cofactor expansion.
- Forgetting to divide by the determinant when finding an inverse, or dividing only some entries.
- Writing the matrix equation as x=bA−1 — you must pre-multiply, giving x=A−1b.
- Composing transformations in the wrong order — for "first P, then Q," apply QP.
- Solving the characteristic equation but not finding the eigenvectors, or quoting the zero vector as an eigenvector.
- Mismatching the order of eigenvalues in D with the eigenvectors in P when diagonalising.
- Mis-stating the characteristic equation in Cayley-Hamilton — sign of the trace term, the detA constant, and the I factor all matter.
- Treating a singular system as having a unique solution rather than checking for no/infinitely many solutions.
- Not showing enough working. AQA mark schemes award method marks generously when the working is clear; a bare final answer can score fewer marks than a flawed answer with clean method.
A revision plan that explicitly drills these habits — not just the content — will move your grade more than another pass through the textbook.
How LearningBro's AQA Further Maths Matrices Course Helps
LearningBro's AQA A-Level Further Maths: Matrices course is built around the structure of this guide. Each lesson covers one focus area of the compulsory Pure content — operations and multiplication, determinants, inverses, solving systems, transformations in 2D and 3D, eigenvalues and eigenvectors, diagonalisation, and Cayley-Hamilton — with worked examples, mark-scheme-style solutions, and practice questions designed for spaced revisits.
The course is designed to be used in two ways. As a first pass, you can work through the lessons in order, building the structural ideas on top of the algebra and geometry exactly as the subject is best learned. As a revision tool, you can drop into any single lesson — drilling eigenvectors and diagonalisation together before a mock, say — and work the practice independently. The AI tutor is available throughout to give targeted hints when you get stuck, without giving away full solutions, and to mark your written working with structured feedback.
If you want one place to revise matrices well, with realistic practice and clean explanations of every topic, the full course is the right next step. Start with the AQA A-Level Further Maths: Matrices course.