Skip to main content
EnglandFurther MathsSyllabus dot point

How do you add, multiply and take the determinant of matrices, and what does the determinant tell you geometrically?

Matrix addition, subtraction, scalar multiplication and multiplication, the zero and identity matrices, non-commutativity, and the determinant of a 2x2 and 3x3 matrix as an area or volume scale factor.

A focused answer to the OCR A-Level Further Mathematics A content on matrix arithmetic and determinants, covering addition, subtraction and scalar multiplication, matrix multiplication and its non-commutativity, the zero and identity matrices, and the determinant of a 2x2 and 3x3 matrix interpreted as an area or volume scale factor.

Generated by Claude Opus 4.811 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. Adding, subtracting and scaling
  3. Matrix multiplication
  4. The determinant of a 2x2 matrix
  5. The determinant of a 3x3 matrix
  6. Try this

What this dot point is asking

OCR wants you to handle the algebra of matrices fluently: add and subtract matrices of the same order, multiply a matrix by a scalar, multiply two matrices when their dimensions are compatible, recognise the zero and identity matrices and the fact that matrix multiplication is not commutative, and compute and interpret the determinant of a 2×22 \times 2 and a 3×33 \times 3 matrix as an area or volume scale factor.

Adding, subtracting and scaling

Two matrices can be added or subtracted only when they have the same order (same number of rows and columns), and you combine corresponding entries. Scalar multiplication multiplies every entry by the scalar. These operations obey the usual commutative and associative laws, so matrix addition behaves like ordinary addition.

Matrix multiplication

The product AB\mathbf{A}\mathbf{B} is defined only when the number of columns of A\mathbf{A} equals the number of rows of B\mathbf{B}. If A\mathbf{A} is m×nm \times n and B\mathbf{B} is n×pn \times p, then AB\mathbf{A}\mathbf{B} is m×pm \times p, and the entry in row ii, column jj is the sum of the products of row ii of A\mathbf{A} with column jj of B\mathbf{B}.

Multiplication is associative, (AB)C=A(BC)(\mathbf{A}\mathbf{B})\mathbf{C} = \mathbf{A}(\mathbf{B}\mathbf{C}), and distributes over addition, but it is not commutative: in general ABBA\mathbf{A}\mathbf{B} \ne \mathbf{B}\mathbf{A}, and indeed one product may be defined while the other is not. The identity matrix I\mathbf{I} (ones on the leading diagonal, zeros elsewhere) acts like the number 11: AI=IA=A\mathbf{A}\mathbf{I} = \mathbf{I}\mathbf{A} = \mathbf{A}.

The determinant of a 2x2 matrix

The determinant of a 2×22 \times 2 matrix measures how the transformation it represents scales area. A determinant of zero means the transformation collapses the plane onto a line (the matrix is singular and has no inverse), and a negative determinant means the orientation is reversed (a reflection is involved).

The determinant of a 3x3 matrix

For a 3×33 \times 3 matrix you expand along any row (or column) using cofactors: multiply each entry by the determinant of the 2×22 \times 2 matrix left when its row and column are deleted, attaching the sign pattern (++)\begin{pmatrix} + & - & + \end{pmatrix} across the top row. The result is the volume scale factor of the transformation in three dimensions.

A useful property is the multiplicative rule det(AB)=detA×detB\det(\mathbf{A}\mathbf{B}) = \det\mathbf{A} \times \det\mathbf{B}, which means a composite transformation scales area or volume by the product of the individual factors.

These operations underpin everything else in the matrices strand: inverses use the determinant, transformations use multiplication, and proof by induction often establishes a formula for a power of a matrix.

Try this

Q1. Find (1234)+2(0112)\begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix} + 2\begin{pmatrix} 0 & 1 \\ -1 & 2 \end{pmatrix}. [2 marks]

  • Cue. 2(0112)=(0224)2\begin{pmatrix} 0 & 1 \\ -1 & 2 \end{pmatrix} = \begin{pmatrix} 0 & 2 \\ -2 & 4 \end{pmatrix}, so the sum is (1418)\begin{pmatrix} 1 & 4 \\ 1 & 8 \end{pmatrix}.

Q2. Find the value of kk for which (k32k)\begin{pmatrix} k & 3 \\ 2 & k \end{pmatrix} is singular. [3 marks]

  • Cue. Singular means det=0\det = 0: k26=0k^2 - 6 = 0, so k=±6k = \pm\sqrt{6}.

Exam-style practice questions

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

OCR 20195 marksThe matrices are A=(2103)\mathbf{A} = \begin{pmatrix} 2 & 1 \\ 0 & 3 \end{pmatrix} and B=(1142)\mathbf{B} = \begin{pmatrix} 1 & -1 \\ 4 & 2 \end{pmatrix}. Find AB\mathbf{AB} and BA\mathbf{BA}, and hence state whether A\mathbf{A} and B\mathbf{B} commute.
Show worked answer →

Compute AB\mathbf{AB} row times column (M1): (2103)(1142)=(2(1)+1(4)2(1)+1(2)0(1)+3(4)0(1)+3(2))=(60126)\begin{pmatrix} 2 & 1 \\ 0 & 3 \end{pmatrix}\begin{pmatrix} 1 & -1 \\ 4 & 2 \end{pmatrix} = \begin{pmatrix} 2(1) + 1(4) & 2(-1) + 1(2) \\ 0(1) + 3(4) & 0(-1) + 3(2) \end{pmatrix} = \begin{pmatrix} 6 & 0 \\ 12 & 6 \end{pmatrix} (A1).

Compute BA\mathbf{BA} (M1): (1142)(2103)=(22810)\begin{pmatrix} 1 & -1 \\ 4 & 2 \end{pmatrix}\begin{pmatrix} 2 & 1 \\ 0 & 3 \end{pmatrix} = \begin{pmatrix} 2 & -2 \\ 8 & 10 \end{pmatrix} (A1).

Since ABBA\mathbf{AB} \ne \mathbf{BA}, the matrices do not commute (A1).

Markers reward correct row-times-column products for both, and the explicit conclusion that the two results differ.

OCR 20214 marksThe matrix M=(k23k+1)\mathbf{M} = \begin{pmatrix} k & 2 \\ 3 & k+1 \end{pmatrix} has determinant 44. Find the possible values of kk and state what the determinant represents geometrically.
Show worked answer →

Write the determinant (M1): detM=k(k+1)2(3)=k2+k6\det \mathbf{M} = k(k+1) - 2(3) = k^2 + k - 6 (A1).

Set equal to 44 and solve (M1): k2+k6=4k2+k10=0k^2 + k - 6 = 4 \Rightarrow k^2 + k - 10 = 0. The quadratic formula gives k=1±1+402=1±412k = \dfrac{-1 \pm \sqrt{1 + 40}}{2} = \dfrac{-1 \pm \sqrt{41}}{2} (A1).

Geometrically the determinant is the area scale factor of the transformation represented by M\mathbf{M} (a determinant of 44 scales areas by a factor of 44).

Markers reward the correct determinant expression, the resulting quadratic, both roots, and the area-scale-factor interpretation.

Related dot points

Sources & how we know this