How are matrices added, multiplied and inverted, and how is a matrix inverse used to solve a system of linear equations?
Perform matrix addition, scalar multiplication and matrix multiplication, find the determinant and inverse of a 2x2 matrix, and use the inverse to solve a system of simultaneous linear equations
A focused answer to the VCE General Mathematics Unit 4 Matrices key-knowledge point on matrix operations. Order and conformability, addition and scalar multiplication, the row-by-column product, the determinant and inverse of a 2x2 matrix, and solving simultaneous equations with the inverse.
Reviewed by: AI editorial process; not yet individually human-reviewed
Have a quick question? Jump to the Q&A page
Jump to a section
What this dot point is asking
VCAA wants you to do arithmetic with matrices and to use the inverse of a matrix to solve a pair of simultaneous linear equations. You must know when two matrices can be added or multiplied (conformability), perform the row-by-column product, compute a determinant and inverse by hand, and set up a system in the form . This is the foundation of the Matrices module and is examined on both papers.
Addition and scalar multiplication
To add or subtract matrices of the same order, add or subtract the corresponding entries. To multiply a matrix by a scalar , multiply every entry by . For example,
Matrix multiplication
The product is found by the row-by-column rule: the entry in row , column of is the sum of the products of row of with column of . If is and is , then is . Matrix multiplication is not commutative: in general .
The identity and the inverse
The identity matrix is , and . The inverse satisfies . A matrix with determinant zero is singular and has no inverse.
Solving simultaneous equations
A pair of linear equations can be written as a matrix equation , where holds the coefficients, the unknowns and the constants. Multiplying both sides on the left by gives
Why this matters for the exams
Matrix arithmetic is assumed knowledge for everything else in the module, including transition matrices and matrix models of populations. Exam 1 typically tests order, a small product, or a determinant by hand; Exam 2 may set up a system and expect you to solve it with the calculator using , then interpret the answer in context.
Exam-style practice questions
Practice questions written in the style of VCAA exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.
2025 VCAA1 marksConsider the matrices A, B and C where A = [[2, 0], [1, 6]] (a 2x2 matrix with rows 2,0 and 1,6), B = [[3], [5]] (a 2x1 column matrix) and C = AB. The calculation that correctly determines element c21 is A. 2 x 3 + 0 x 5 B. 2 x 5 + 3 x 0 C. 1 x 3 + 6 x 5 D. 1 x 5 + 6 x 3Show worked answer β
In matrix multiplication, element c21 (row 2, column 1 of the product) is found by multiplying row 2 of A by column 1 of B, element by element, then adding.
Row 2 of A is [1, 6]. Column 1 of B is [3, 5].
c21 = 1 x 3 + 6 x 5 = 3 + 30 = 33.
This matches option C. The first subscript picks the row of the left matrix and the second subscript picks the column of the right matrix.