Topic 2: Vectors and matrices
Use matrices beyond order two, including the determinant and inverse of a three by three matrix, to represent and solve systems of linear equations, and interpret unique, infinite and no-solution cases geometrically
A focused answer to the QCE Specialist Mathematics Unit 3 dot point on systems of linear equations. Covers representing systems in matrix form, the determinant and inverse of a three by three matrix, solving by the matrix inverse, and the geometric meaning of unique, infinitely many and no solutions, with a verified worked example and the determinant-zero trap.
Reviewed by: AI editorial process; not yet individually human-reviewed
Have a quick question? Jump to the Q&A page
What this dot point is asking
QCAA wants you to handle matrices larger than , especially to represent a system of three linear equations in three unknowns as , solve it using the inverse , and interpret what happens when the determinant is zero. The geometric reading, three planes meeting in a point, in a line or not at all, ties the algebra to the vectors topic.
The answer
Matrix form of a system
A system such as
is written compactly as , where is the matrix of coefficients, and .
Determinant of a three by three matrix
Expanding along the first row,
The alternating signs () are essential. The determinant decides invertibility: has an inverse if and only if .
Inverse and solving
When the system has a unique solution
In practice the inverse of a matrix is found from the adjugate divided by the determinant, or computed with technology, which QCAA permits in the relevant assessment. The point is to recognise the structure and read off the unique solution.
Geometric interpretation
Each equation is a plane. Solving the system locates the common points of three planes.
- Unique solution (): the three planes meet at a single point.
- No solution (, system inconsistent): the planes have no common point, for example two are parallel, or they form a triangular prism arrangement.
- Infinitely many solutions (, system consistent): the planes share a common line, or all coincide, giving a one-parameter family of solutions.
Why the determinant matters
A zero determinant signals that the rows (or the normal vectors of the planes) are linearly dependent, so the inverse method fails. You then test consistency directly by elimination to decide between no solution and infinitely many.
Exam-style practice questions
Practice questions written in the style of QCAA exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.
2024 QCAA4 marksA system of linear equations is given by x - 2y - 2z = -6, -3x - y + z = 2, 2x + 3y - 5z = 10. a) Express the system of equations as a matrix equation of the form AX = B, where A is a 3 x 3 matrix and both X and B are 3 x 1 column vectors. b) Use matrix algebra to express X in terms of A and B. c) Use your result from part b) to determine the solution of the system of equations. d) Verify your result from part c) using one of the given linear equations.Show worked answer β
a) [1 mark] A = [[1, -2, -2], [-3, -1, 1], [2, 3, -5]], X = [x, y, z]^T (column), B = [-6, 2, 10]^T (column), so AX = B.
b) [1 mark] Since A is invertible (det A is non-zero), pre-multiply both sides by A inverse: X = A^(-1) B.
c) [1 mark] Evaluating A^(-1) B (by calculator on this technology-active paper) gives X = [-2, 3, -1]^T, that is x = -2, y = 3, z = -1.
d) [1 mark] Substitute into the first equation x - 2y - 2z = -6: (-2) - 2(3) - 2(-1) = -2 - 6 + 2 = -6, which matches the right-hand side, so the solution is verified.