Skip to main content
ExamExplained
WA Β· Mathematics Applications
Mathematics Applications study scene
Β§-Syllabus dot point
WAMathematics ApplicationsSyllabus dot point

How can a grid of numbers store data and model change over time?

Perform matrix operations, find determinants and inverses of 2x2 matrices, solve matrix equations, and apply transition matrices to model systems.

How to add, multiply and invert matrices, solve matrix equations with the inverse, and use transition matrices and steady states to model populations and market share.

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. Matrix operations
  3. Determinant and inverse of a 2x2 matrix
  4. Solving matrix equations
  5. Transition matrices
  6. Reaching the steady state

What this dot point is asking

You must carry out matrix operations, find determinants and inverses of 2Γ—22\times2 matrices, solve matrix equations, and apply transition matrices.

Matrix operations

Matrices are added, subtracted and scaled entry by entry, but multiplication has its own rule.

For example, (1234)(56)=(1(5)+2(6)3(5)+4(6))=(1739)\begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}\begin{pmatrix} 5 \\ 6 \end{pmatrix} = \begin{pmatrix} 1(5) + 2(6) \\ 3(5) + 4(6) \end{pmatrix} = \begin{pmatrix} 17 \\ 39 \end{pmatrix}.

Determinant and inverse of a 2x2 matrix

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

The recipe for the inverse is: swap the entries on the leading diagonal, negate the other two, and divide every entry by the determinant. If det⁑A=0\det A = 0 the matrix is singular and has no inverse.

Solving matrix equations

A system of two linear equations can be written as Ax=bA\mathbf{x} = \mathbf{b}, where AA holds the coefficients, x\mathbf{x} the unknowns and b\mathbf{b} the constants. Pre-multiply both sides by Aβˆ’1A^{-1} to get x=Aβˆ’1b\mathbf{x} = A^{-1}\mathbf{b}.

Transition matrices

A transition matrix TT describes how a system moves between states each step. Each column gives the proportions moving from one state to each state, so its columns sum to 11. The state after one step is Sn+1=TSnS_{n+1} = T S_n, and after nn steps Sn=TnS0S_n = T^n S_0.

Reaching the steady state

For a regular transition matrix the state vector converges to a steady state independent of where it started, found either by iterating TnS0T^n S_0 for large nn on the calculator, or by solving Ts=sT \mathbf{s} = \mathbf{s} with the entries of s\mathbf{s} summing to the total population.

Exam-style practice questions

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

WACE 20216 marksLet A=(3214)A = \begin{pmatrix} 3 & 2 \\ 1 & 4 \end{pmatrix}. (a) Find the determinant of AA. (b) Find Aβˆ’1A^{-1}. (c) Hence solve Ax=(86)A\mathbf{x} = \begin{pmatrix} 8 \\ 6 \end{pmatrix}.
Show worked answer β†’

Use the 2Γ—22\times2 determinant and inverse formulas, then multiply.

(a) det⁑A=(3)(4)βˆ’(2)(1)=12βˆ’2=10\det A = (3)(4) - (2)(1) = 12 - 2 = 10. (1 mark)

(b) Aβˆ’1=110(4βˆ’2βˆ’13)=(0.4βˆ’0.2βˆ’0.10.3)A^{-1} = \dfrac{1}{10}\begin{pmatrix} 4 & -2 \\ -1 & 3 \end{pmatrix} = \begin{pmatrix} 0.4 & -0.2 \\ -0.1 & 0.3 \end{pmatrix}. (2 marks)

(c) x=Aβˆ’1(86)=(0.4(8)βˆ’0.2(6)βˆ’0.1(8)+0.3(6))=(3.2βˆ’1.2βˆ’0.8+1.8)=(21)\mathbf{x} = A^{-1}\begin{pmatrix} 8 \\ 6 \end{pmatrix} = \begin{pmatrix} 0.4(8) - 0.2(6) \\ -0.1(8) + 0.3(6) \end{pmatrix} = \begin{pmatrix} 3.2 - 1.2 \\ -0.8 + 1.8 \end{pmatrix} = \begin{pmatrix} 2 \\ 1 \end{pmatrix}. (3 marks)

Markers reward the determinant, the swap-negate-divide inverse, and pre-multiplying by Aβˆ’1A^{-1} to solve.

WACE 20236 marksA transition matrix T=(0.80.30.20.7)T = \begin{pmatrix} 0.8 & 0.3 \\ 0.2 & 0.7 \end{pmatrix} describes the movement of customers between Brand A (top row) and Brand B each month. The current state is S0=(500500)S_0 = \begin{pmatrix} 500 \\ 500 \end{pmatrix}. (a) Find the distribution after one month. (b) Find it after two months.
Show worked answer β†’

Multiply the transition matrix by the state vector each month.

(a) S1=TS0=(0.8(500)+0.3(500)0.2(500)+0.7(500))=(400+150100+350)=(550450)S_1 = T S_0 = \begin{pmatrix} 0.8(500) + 0.3(500) \\ 0.2(500) + 0.7(500) \end{pmatrix} = \begin{pmatrix} 400 + 150 \\ 100 + 350 \end{pmatrix} = \begin{pmatrix} 550 \\ 450 \end{pmatrix}. (3 marks)

(b) S2=TS1=(0.8(550)+0.3(450)0.2(550)+0.7(450))=(440+135110+315)=(575425)S_2 = T S_1 = \begin{pmatrix} 0.8(550) + 0.3(450) \\ 0.2(550) + 0.7(450) \end{pmatrix} = \begin{pmatrix} 440 + 135 \\ 110 + 315 \end{pmatrix} = \begin{pmatrix} 575 \\ 425 \end{pmatrix}. (3 marks)

Markers reward Sn+1=TSnS_{n+1} = T S_n applied in order, with columns of TT summing to 11.

ExamExplained