A matrix is a rectangular array of numbers. That deceptively simple object is one of the most powerful in all of mathematics: a single matrix can encode a system of simultaneous equations, a geometric transformation of the plane, the structure of a network, or the dynamics of a population model. This opening lesson builds the language — order, entries, special matrices, the transpose — and the three structure-preserving operations (addition, subtraction, scalar multiplication) on which everything later in the course rests. Master the notation here and matrix multiplication, determinants, inverses, transformations and eigentheory will all feel like natural extensions.
1. Where this sits in AQA 7367
Matrices are compulsory pure content, assessed in Paper 1 and Paper 2 (each 2 hours, 100 marks, weighted 33⅓%). This first lesson is almost entirely AO1 — accurate use of standard techniques and notation — but the equality-of-matrices method (equate corresponding entries to solve for unknowns) is genuine AO2 reasoning and recurs throughout the matrices strand. The full AQA matrices specification runs from these definitions through multiplication, determinants and inverses (2×2 and 3×3), linear transformations in 2D and 3D, solving systems of equations, and on to eigenvalues, eigenvectors, diagonalisation and the Cayley–Hamilton theorem. Everything starts with getting the vocabulary watertight.
2. Core theory: what a matrix is
A matrix is a rectangular array of numbers arranged in rows and columns. The order (or size) of a matrix with m rows and n columns is written m×n — always rows first, columns second.
A=(142536)
This A is a 2×3 matrix: 2 rows, 3 columns. We name the entry in row i, column j as aij — again row index first. For the matrix above,
a11=1,a12=2,a13=3,a21=4,a23=6.
A compact way to define a whole matrix is by a rule for its general entry. For example, the rule aij=i+j generates, for a 3×3 matrix,
1+12+13+11+22+23+21+32+33+3=234345456,
which happens to be symmetric (because i+j=j+i). The main diagonal consists of the entries aii (top-left to bottom-right); here it is 2,4,6. Reading off a single entry from such a rule is a routine AO1 check: a23=2+3=5, the entry in row 2, column 3.
Special matrices
Matrix type
Description
Example
Square matrix
Same number of rows and columns (n×n)
(1324)
Identity matrixI
Square; 1s on the main diagonal, 0s elsewhere
(1001)
Zero matrixO
Every entry is 0
(0000)
Diagonal matrix
Square; non-zero entries only on the main diagonal
(3007)
Symmetric matrix
A=AT, i.e. aij=aji
(1552)
Skew-symmetric
AT=−A; forces aii=0
(0−330)
Column vector
n×1 matrix
(3−1)
Row vector
1×n matrix
(25)
The identity I and zero matrix O will turn out to behave like the numbers 1 and 0 under multiplication and addition respectively — the analogy is exact and worth holding onto.
Why matrices matter
It is worth seeing, before the abstraction piles up, what a matrix is for. Three motivating uses, all developed later in this course:
Simultaneous equations. The system 2x+y=5, 3x+2y=8 is captured by the single matrix equation (2312)(xy)=(58) — the coefficient matrix, the unknown vector, and the constant vector. Solving it becomes a single operation x=A−1b (lesson 5).
Geometric transformations. Every rotation, reflection, enlargement and shear of the plane is a 2×2 matrix acting on position vectors; composing transformations becomes matrix multiplication (lessons 6–7).
Iterated processes. Population models, Markov chains and recurrence systems take the form xn+1=Axn; the long-term behaviour is read off the eigenvalues of A (lessons 8–9).
Each of these reduces a messy problem to clean matrix algebra — which is exactly why getting the algebra of addition, scaling and multiplication right matters so much.
3. Matrix addition, subtraction and scalar multiplication
Addition and subtraction
Two matrices can be added or subtracted only if they have the same order. The operation is performed entry-by-entry:
(acbd)+(egfh)=(a+ec+gb+fd+h).
A quick concrete subtraction, showing the double-negative care that earns accuracy marks:
Addition inherits all the structure of ordinary number addition:
Property
Statement
Commutative
A+B=B+A
Associative
(A+B)+C=A+(B+C)
Additive identity
A+O=A
Additive inverse
A+(−A)=O
Scalar multiplication
Multiplying a matrix by a scalar k multiplies every entry by k:
k(acbd)=(kakckbkd).
These two operations make matrices of a fixed order into a vector space — which is exactly why so much vector geometry later carries across to matrices.
Worked Example 1 — combined operations (with mark scheme)
Mark scheme: M1 for correctly forming both scalar multiples 2A and 3B; M1 for subtracting corresponding entries; A1 for the fully correct matrix (6−1952). A sign slip on 2−(−3) loses only the A1 if both M marks are clearly earned.
Worked Example 2 — solving a matrix equation for an unknown matrix (with mark scheme)
Because addition and scalar multiplication obey the usual algebraic laws, we can solve a matrix equation for an unknown matrix exactly as we would solve a scalar equation. Find the 2×2 matrix X satisfying
3X−2(1−203)=(72−69).
Rearrange to isolate 3X, then divide by the scalar 3:
Mark scheme: M1 for rearranging to 3X=… (adding 2 times the known matrix to both sides); A1 for 3X=(9−2−615); A1 for dividing every entry by 3 to give the exact X (the −32 must be kept exact, not rounded). Note we could only "divide by 3" because it is scalar division — there is no division by a matrix here.
4. The transpose
The transpose of a matrix A, written AT, is obtained by swapping rows and columns — row i of A becomes column i of AT. An m×n matrix transposes to an n×m matrix.
A=(142536)⟹AT=123456.
Key properties (the last one is the one students most often get wrong):
(AT)T=A,(A+B)T=AT+BT,(kA)T=kAT,(AB)T=BTAT.
Note the reversal of order in (AB)T=BTAT. The transpose also gives the cleanest definition of symmetry: A is symmetric exactly when A=AT, and skew-symmetric when AT=−A.
Worked Example 3 — transpose and symmetry (with mark scheme)
The matrix A=23rp4−15q0 is symmetric. Find p, q and r, and write down AT.
A symmetric matrix satisfies aij=aji, so we match each off-diagonal entry with its mirror image across the main diagonal:
a12=a21a13=a31a23=a32⟹p=3,⟹5=r,⟹q=−1.
Hence A=23534−15−10, and because A is symmetric, AT=A — that is the whole point of symmetry.
Mark scheme: M1 for using aij=aji on at least two pairs; A1 for all three values p=3,q=−1,r=5; B1 for stating AT=A with the reason (symmetric ⇒ equals its transpose). A common loss is matching a13 with a23 rather than with its true mirror a31.
5. Equality of matrices — the workhorse method
Two matrices A and B are equal if and only if (i) they have the same order, and (ii) corresponding entries are equal: aij=bij for all i,j. A single matrix equation of order m×n is therefore shorthand for mnsimultaneous scalar equations — exactly as a complex-number equation splits into "real parts equal, imaginary parts equal".
Worked Example 2 — solving by equating entries (with mark scheme)
Find x, y and z given
(2xy+132z−1)=(643z+4).
Equate corresponding entries:
2x=6y+1=42z−1=z+4⟹x=3,⟹y=3,⟹z=5.
Mark scheme: M1 for equating at least two pairs of corresponding entries; A1 for x=3 and y=3; A1 for solving the linear equation 2z−1=z+4 to get z=5. The (1,2) entry 3=3 is automatically consistent and carries no unknown — recognising that it imposes no extra condition is part of the reasoning.
6. Specimen-style exam question
(Specimen-style — not a real past paper.) The matrices P=(3−1a2) and Q=(b54−2) satisfy P+Q=(1410). Find a and b, and hence write down P−Q. (4 marks)
Model solution. Adding entry-by-entry, P+Q=(3+b4a+40). Comparing with (1410):
3+b=1⟹b=−2,a+4=1⟹a=−3.
The (2,1) and (2,2) entries (4=4, 0=0) are automatically consistent. So P=(3−1−32), Q=(−254−2), giving
Complex numbers (compulsory pure): equating corresponding matrix entries is the same logical move as equating real and imaginary parts of z=x+iy. The complex number a+bi can itself be represented by the matrix (ab−ba), with i↔(01−10) — a link you will appreciate after the eigenvalue lessons.
Vectors (A-Level Maths): a column vector is an n×1 matrix; the dot product is a row vector times a column vector. This bridges directly into the transformation lessons.
Later in matrices: the transpose underlies symmetric matrices and the adjugate route to inverses; the trace introduced in the stretch section returns as the sum of eigenvalues.
Mechanics and statistics options (Paper 3): matrices encode systems of forces resolved in two directions and the transition matrices of probabilistic models; the algebra is identical, only the interpretation changes.
8. Mark-scheme literacy
Examiners reward method that is visible and correct entry-by-entry. On these foundational questions:
"Find" expects a final exact matrix or values — a decimal where an exact value is available can be penalised.
For combined operations, the scalar multiples are method marks: write 2A and 3B out explicitly before combining, so a single arithmetic slip costs one accuracy mark, not the whole answer.
For equating entries, line up the equations clearly; the command word is usually "hence find", which signals that you must use the matrix-equality argument rather than guessing.
Follow-through (ft) marks are common: if you misread one entry but apply the correct method, later marks can still be earned. Showing structure protects you.
When a question gives a constraint such as "A is symmetric" or "B is singular", that phrase is doing mathematical work — quote it explicitly and use it, because a mark is usually allocated for recognising and applying the property rather than ignoring it.
For a "write down" instruction, no working is expected and none is credited — but a "find" or "determine" expects justified working, and an unsupported correct answer can score zero method marks even when the final value is right.
9. Grade-band model answers
Question. The matrix M=(ab2a) is symmetric and satisfies M+MT=(4444). Find a and b, showing your reasoning. (4 marks)
Mid-band response. "MT=(a2ba). Adding: (2a2+b2+b2a)=(4444). So 2a=4, a=2 and 2+b=4, b=2."
Examiner-style commentary: correct values and the key transpose step is shown, so this scores well. It does not, however, use the stated fact that M is symmetric, nor check consistency — a marker looking for AO2 communication would want to see that loose end addressed.
Stronger response. "Since M is symmetric, M=MT, so the off-diagonal entries must agree: 2=b. Then M+MT=2M=(2a442a). Comparing with (4444) gives 2a=4, so a=2."
Examiner-style commentary: this uses symmetry up front to get b=2 directly, then exploits M+MT=2M for symmetric M — economical and fully justified. Every claim is warranted.
Top-band response. "Symmetry forces b=2 (off-diagonal entries equal), so M=(a22a), which already equals its transpose. Hence M+MT=2M, and the equation reduces to 2(a22a)=(4444). The off-diagonal entries are automatically 4 (consistent), and the diagonal gives 2a=4⇒a=2. Thus a=b=2, and M=(2222), which indeed satisfies the condition."
Examiner-style commentary: full marks. The candidate states the logical force of each hypothesis ("symmetry forces…", "automatically consistent…"), reduces the problem before computing, and verifies the final matrix against the original condition. This is precisely the AO2 communication top answers display.
10. Common misconceptions
"Order is columns × rows." No — it is rows × columns, and aij is row i, column j. Reversing this corrupts every later calculation.
"You can add any two matrices." Addition needs identical orders. A 2×3 and a 3×2 cannot be added even though both have six entries.
"The transpose of a product is ATBT." It is (AB)T=BTAT — the order reverses.
"A diagonal matrix must be the identity." A diagonal matrix only requires zeros off the diagonal; the diagonal entries can be any numbers, e.g. diag(3,7).
"Symmetric means the diagonal is symmetric." Symmetry is about aij=aji (mirror across the diagonal); the diagonal entries themselves are unconstrained.
"Scalar multiplication multiplies just the first entry / the diagonal." It multiplies every entry by the scalar.
"O and I are interchangeable."O is the additive identity (A+O=A); I is the multiplicative identity (AI=A, next lesson). They play opposite roles.
11. Common errors
Writing the order columns-first (calling a 2×3 matrix "3×2").
Sign slips when subtracting, especially b−(−3) type entries — write the double negative explicitly.
Forgetting to multiply every entry in a scalar multiple (commonly leaving a row untouched).
Transposing only the off-diagonal entries and forgetting that the shape changes for non-square matrices.
In equality problems, stopping after one equation instead of solving the full set, or missing that one entry is automatically consistent.
Confusing the zero matrixO with the scalar 0 when a question mixes the two.
12. Going further (stretch)
The set Mn(R) of n×n real matrices, with addition and scalar multiplication, is a vector space of dimension n2 — a natural basis is the matrices Eij with a single 1 in position (i,j) and 0s elsewhere. A neat STEP/MAT-flavoured fact: every square matrix splits uniquely as the sum of a symmetric and a skew-symmetric part,
A=symmetric21(A+AT)+skew-symmetric21(A−AT).
Check the symmetric part: (21(A+AT))T=21(AT+(AT)T)=21(AT+A), which is the matrix itself — so it is symmetric. Likewise (21(A−AT))T=21(AT−A)=−21(A−AT), so the second part is skew-symmetric. Adding the two brackets gives 21(A+AT)+21(A−AT)=A. The decomposition is also unique: if A=S+K with S symmetric and K skew, then transposing gives AT=S−K, and adding/subtracting recovers S=21(A+AT), K=21(A−AT). This decomposition reappears in mechanics (strain vs rotation) and in pure analysis, and is a favourite "show that" springboard. A further observation: tr(A)=∑iaii, the trace, satisfies tr(A+B)=tr(A)+tr(B), tr(kA)=ktr(A) and tr(AT)=tr(A) — it will return as the sum of eigenvalues.
13. Additional A* practice (with worked answers)
P1. Given A=(13−20) and B=(4−115), find 3A−2B.
Answer:3A=(39−60), 2B=(8−2210), so 3A−2B=(−511−8−10).
P2. Find a and b if (a+132ba−b)=(4360).
Answer:a+1=4⇒a=3; 2b=6⇒b=3; check the (2,2) entry: a−b=0 ✓ (consistent).
P3. Write A=(2−154) as the sum of a symmetric and a skew-symmetric matrix.
Answer:21(A+AT)=(2224) (symmetric) and 21(A−AT)=(0−330) (skew-symmetric); their sum is A ✓.
P4. A 3×3 matrix has entries aij=i−j. Write it out and state whether it is symmetric, skew-symmetric or neither.
Answer:012−101−2−10. Since aji=j−i=−(i−j)=−aij, it is skew-symmetric (note the zero diagonal).
P5. Find the 2×2 matrix X such that 2XT=(4−268).
Answer: First XT=(2−134). Transposing both sides (and using (XT)T=X) gives X=(23−14). (Check: transpose X back and double it — you recover the original.)
Board alignment
This content is aligned to AQA A-Level Further Mathematics (7367), compulsory pure (Papers 1 & 2). The definitions, transpose properties and equality method are identical in Edexcel (9FM0) and OCR (H245 / MEI H645) — only question styling differs, so this lesson serves all three boards.
Visual summary
order m×naij=row i, col j(kA)ij=kaij(AT)ij=ajiA=AT⇔symmetric
Operation
Condition
Result order
A+B
same order m×n
m×n
kA
any A
same as A
AT
any A (m×n)
n×m
equality A=B
same order
mn scalar equations
Exam takeaway: state orders explicitly, double-negate carefully when subtracting, remember (AB)T=BTAT, and treat a matrix equation as a tidy bundle of scalar equations.