Skip to main content
SingaporeFurther MathsSyllabus dot point

How do we perform matrix arithmetic and compute determinants, and what does a determinant tell us?

Carry out matrix addition and multiplication and evaluate the determinant of 2x2 and 3x3 matrices, interpreting its geometric meaning

A focused answer to the H2 Further Mathematics outcome on matrix arithmetic and determinants. Matrix addition and multiplication, non-commutativity, the determinant of 2x2 and 3x3 matrices by cofactor expansion, its properties, and its geometric meaning 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. The answer
  3. Examples in context
  4. Try this

What this dot point is asking

SEAB wants you to perform matrix addition and multiplication confidently, including recognising when multiplication is defined and that it is not commutative, and to evaluate the determinant of 2×22\times2 and 3×33\times3 matrices. You should also understand the determinant as a scale factor for area or volume and know its key properties.

The answer

Matrix addition and scalar multiplication

Matrices of the same size are added entry by entry, and a scalar multiplies every entry. These operations are commutative and associative just like ordinary addition.

Matrix multiplication

The product AB\mathbf{AB} is defined only when the number of columns of A\mathbf{A} equals the number of rows of B\mathbf{B}. The (i,j)(i, j) entry of AB\mathbf{AB} is the dot product of row ii of A\mathbf{A} with column jj of B\mathbf{B}:

(AB)ij=kaikbkj.(\mathbf{AB})_{ij} = \sum_{k} a_{ik}\,b_{kj}.

Multiplication is associative, (AB)C=A(BC)\mathbf{(AB)C} = \mathbf{A(BC)}, but not commutative: in general ABBA\mathbf{AB} \neq \mathbf{BA}. The identity matrix I\mathbf{I} satisfies AI=IA=A\mathbf{AI} = \mathbf{IA} = \mathbf{A}.

The determinant of a 2x2 matrix

For A=(abcd)\mathbf{A} = \begin{pmatrix} a & b \\ c & d \end{pmatrix},

detA=adbc.\det\mathbf{A} = ad - bc.

The determinant of a 3x3 matrix

Expand along any row or column using cofactors. Along the first row of (abcdefghi)\begin{pmatrix} a & b & c \\ d & e & f \\ g & h & i \end{pmatrix}:

det=aefhibdfgi+cdegh.\det = a\begin{vmatrix} e & f \\ h & i \end{vmatrix} - b\begin{vmatrix} d & f \\ g & i \end{vmatrix} + c\begin{vmatrix} d & e \\ g & h \end{vmatrix}.

The signs follow the checkerboard pattern (+++++)\begin{pmatrix} + & - & + \\ - & + & - \\ + & - & + \end{pmatrix}. Choosing a row or column with zeros minimises the arithmetic.

Properties and geometric meaning

Key properties: det(AB)=detAdetB\det(\mathbf{AB}) = \det\mathbf{A}\,\det\mathbf{B}; det(AT)=detA\det(\mathbf{A}^{\mathsf T}) = \det\mathbf{A}; swapping two rows changes the sign; a matrix with a zero row or two equal rows has determinant 00. Geometrically, det|\det| is the factor by which the linear map scales area (in 2D) or volume (in 3D), and det=0\det = 0 means the map collapses space to a lower dimension, so the matrix is singular (non-invertible).

Examples in context

Example 1. Composing transformations. A rotation followed by a reflection in the plane is the matrix product of their two 2×22\times2 matrices, applied right to left. Because multiplication is not commutative, reflecting then rotating generally gives a different map, matching the geometry.

Example 2. Detecting collinearity. Three points in the plane are collinear exactly when a 3×33\times3 determinant built from their coordinates is zero, because the enclosed area, which the determinant measures, vanishes.

Try this

Q1. Compute det(5234)\det\begin{pmatrix} 5 & 2 \\ 3 & 4 \end{pmatrix}. [1 mark]

  • Cue. 5×42×3=206=145\times4 - 2\times3 = 20 - 6 = 14.

Q2. State whether AB=BA\mathbf{AB} = \mathbf{BA} holds for general matrices and why. [1 mark]

  • Cue. No; matrix multiplication is not commutative, and the two products may even have different sizes.

Q3. What does detA=0\det\mathbf{A} = 0 tell you about A\mathbf{A}? [2 marks]

  • Cue. A\mathbf{A} is singular: it has no inverse and its columns are linearly dependent.

Exam-style practice questions

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

Original5 marksGiven 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 comment on whether they are equal.
Show worked answer →

Multiply row by column. For AB\mathbf{AB}:

AB=(2103)(1142)=(2(1)+1(4)2(1)+1(2)0(1)+3(4)0(1)+3(2))=(60126).\mathbf{AB} = \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}.

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

Since ABBA\mathbf{AB} \neq \mathbf{BA}, matrix multiplication is not commutative in general.

Markers reward correct row-by-column products for both, and the explicit comment that the two products differ so multiplication is non-commutative.

Original5 marksEvaluate the determinant of M=(123045106)\mathbf{M} = \begin{pmatrix} 1 & 2 & 3 \\ 0 & 4 & 5 \\ 1 & 0 & 6 \end{pmatrix} by cofactor expansion along the first row.
Show worked answer →

Expand along the first row, alternating signs +,,++, -, +:

detM=1450620516+30410.\det\mathbf{M} = 1\begin{vmatrix} 4 & 5 \\ 0 & 6 \end{vmatrix} - 2\begin{vmatrix} 0 & 5 \\ 1 & 6 \end{vmatrix} + 3\begin{vmatrix} 0 & 4 \\ 1 & 0 \end{vmatrix}.

Each 2×22\times2 minor: 4506=240=24\begin{vmatrix} 4 & 5 \\ 0 & 6 \end{vmatrix} = 24 - 0 = 24; 0516=05=5\begin{vmatrix} 0 & 5 \\ 1 & 6 \end{vmatrix} = 0 - 5 = -5; 0410=04=4\begin{vmatrix} 0 & 4 \\ 1 & 0 \end{vmatrix} = 0 - 4 = -4.
detM=1(24)2(5)+3(4)=24+1012=22.\det\mathbf{M} = 1(24) - 2(-5) + 3(-4) = 24 + 10 - 12 = 22.

Markers reward the cofactor signs, correct 2×22\times2 minors, and the arithmetic giving 2222.

Related dot points