Skip to main content
SAGeneral MathematicsSyllabus dot point

How do we add, scale and multiply matrices, and when is each operation defined?

Perform matrix addition, subtraction, scalar multiplication and matrix multiplication, applying the order and conformability rules correctly.

How to read a matrix order, add and subtract matrices, multiply by a scalar, and multiply two matrices using the row-by-column rule, including when each operation is defined.

Generated by Claude Opus 4.76 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. Order and notation
  3. Addition, subtraction and scalar multiplication
  4. Matrix multiplication
  5. Why order matters

What this dot point is asking

You must know the order of a matrix, perform the four operations correctly, and state when an operation is or is not defined.

Order and notation

A matrix is a rectangular array of numbers. Its order is rows ×\times columns. The matrix

A=[251034]A = \begin{bmatrix} 2 & 5 & 1 \\ 0 & 3 & 4 \end{bmatrix}

has order 2×32 \times 3 (2 rows, 3 columns). The entry aija_{ij} sits in row ii, column jj, so a23=4a_{23} = 4.

Addition, subtraction and scalar multiplication

These three operations act on each element separately. Same-position entries are combined; for scalar multiplication every entry is multiplied by the scalar.

[2503]+[1−246]=[3349],3[2503]=[61509]\begin{bmatrix} 2 & 5 \\ 0 & 3 \end{bmatrix} + \begin{bmatrix} 1 & -2 \\ 4 & 6 \end{bmatrix} = \begin{bmatrix} 3 & 3 \\ 4 & 9 \end{bmatrix}, \qquad 3\begin{bmatrix} 2 & 5 \\ 0 & 3 \end{bmatrix} = \begin{bmatrix} 6 & 15 \\ 0 & 9 \end{bmatrix}

Matrix multiplication

To find the entry in row ii, column jj of the product ABAB, multiply the elements of row ii of AA by the matching elements of column jj of BB and add the results.

If AA is m×nm \times n and BB is n×pn \times p, the product ABAB has order m×pm \times p. The two inner numbers must match; the two outer numbers give the size of the answer.

Why order matters

Because multiplication combines rows of the first matrix with columns of the second, swapping the order changes both whether the product is defined and what it equals. In the costing example, PQPQ is also defined (2×12\times1 times 1×21\times2) but gives a 2×22 \times 2 matrix, which means something entirely different.