Skip to main content
VICGeneral MathematicsSyllabus dot point

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.

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. Addition and scalar multiplication
  3. Matrix multiplication
  4. The identity and the inverse
  5. Solving simultaneous equations
  6. Why this matters for the exams

What this dot point is asking

VCAA wants you to do arithmetic with matrices and to use the inverse of a 2Γ—22\times 2 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 AX=BAX = B. 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 kk, multiply every entry by kk. For example,

3[1204]=[36012].3\begin{bmatrix} 1 & 2 \\ 0 & 4 \end{bmatrix} = \begin{bmatrix} 3 & 6 \\ 0 & 12 \end{bmatrix}.

Matrix multiplication

The product ABAB is found by the row-by-column rule: the entry in row ii, column jj of ABAB is the sum of the products of row ii of AA with column jj of BB. If AA is m×nm\times n and BB is n×pn\times p, then ABAB is m×pm\times p. Matrix multiplication is not commutative: in general AB≠BAAB \ne BA.

The identity and the inverse

The 2Γ—22\times 2 identity matrix is I=[1001]I = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}, and AI=IA=AAI = IA = A. The inverse Aβˆ’1A^{-1} satisfies AAβˆ’1=Aβˆ’1A=IA A^{-1} = A^{-1} A = I. 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 AX=BAX = B, where AA holds the coefficients, XX the unknowns and BB the constants. Multiplying both sides on the left by Aβˆ’1A^{-1} gives

X=Aβˆ’1B.X = A^{-1} B.

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 X=Aβˆ’1BX = A^{-1}B, 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 3
Show 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.