1.4 Matrices

2026 Syllabus Objectives

  1. Carry out operations of matrix addition, subtraction and multiplication, and recognise the terms zero matrix and identity (or unit) matrix. Including non-square matrices. Matrices will have at most 3 rows and columns.

  2. Recall the meaning of the terms 'singular' and 'non-singular' as applied to square matrices and, for 2×22 \times 2 and 3×33 \times 3 matrices, evaluate determinants and find inverses of non-singular matrices. The notations detM\det M for the determinant of a matrix MM, and II for the identity matrix, will be used.

  3. Understand and use the result, for non-singular matrices, (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}. Extension to the product of more than two matrices may be required.

  4. Understand the use of 2×22 \times 2 matrices to represent certain geometric transformations in the xx-yy plane, in particular: understand the relationship between the transformations represented by AA and A1A^{-1}; recognise that the matrix product ABAB represents the transformation that results from the transformation represented by BB followed by the transformation represented by AA; recall how the area scale factor of a transformation is related to the determinant of the corresponding matrix; find the matrix that represents a given transformation or sequence of transformations. Understanding of the terms 'rotation', 'reflection', 'enlargement', 'stretch' and 'shear' for 2D transformations will be required. Other 2D transformations may be included, but no particular knowledge of them is expected.

  5. Understand the meaning of 'invariant' as applied to points and lines in the context of transformations represented by matrices, and solve simple problems involving invariant points and invariant lines.


🔑 What are Matrices?

Matrices (singular: matrix) are rectangular arrays of numbers, variables or expressions arranged in rows and columns. They are widely used in computing processes, including:

  • Reflection and refraction in computer graphics
  • Computer modelling of probabilities for weather forecasting
  • Representing coordinates of objects in 3-dimensional space

A matrix is typically written in the form:

(a11a12a13a21a22a23a31a32a33)\begin{pmatrix} a_{11} & a_{12} & a_{13} & \dots \\ a_{21} & a_{22} & a_{23} & \dots \\ a_{31} & a_{32} & a_{33} & \dots \\ \vdots & \vdots & \vdots & \ddots \end{pmatrix}

Sign in to view full notes