How do matrices and networks model connected systems?
Perform matrix operations and analyse graphs, paths and networks
Matrix arithmetic, multiplication and inverses plus graph theory, adjacency matrices and shortest paths for TCE Mathematics Applications, with worked examples.
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
This dot point joins two connected ideas: matrices as a way to store and combine numbers in a grid, and networks as diagrams of connected objects that can themselves be written as matrices.
Matrix operations
A matrix has order (rows by columns). You can add or subtract two matrices only if they have the same order, by combining matching entries.
Matrix multiplication of () by () is defined only when the number of columns of equals the number of rows of . The result is , and each entry is the dot product of a row of with a column of .
Determinant and inverse of a 2x2 matrix
For , the determinant is . The inverse exists only when :
The inverse lets you solve a matrix equation by computing .
Graphs and networks
A graph (network) is a set of vertices (nodes) joined by edges. Key terms: the degree of a vertex is the number of edges meeting it; a path is a walk that does not repeat vertices; a connected graph has a route between every pair of vertices.
An adjacency matrix records how many edges directly join each pair of vertices. For an undirected graph this matrix is symmetric.
Shortest path
In a weighted network each edge carries a number (distance, cost or time). The shortest path between two vertices is the route with the smallest total weight. You find it by systematically labelling each vertex with the least cumulative distance from the start, then reading the smallest total at the destination and tracing back.
In the exam, watch the order of matrix multiplication, confirm the determinant is non-zero before inverting, and use matrix powers to count walks rather than tracing every path by hand.
Exam-style practice questions
Practice questions written in the style of TASC exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.
2016 TASC General Mathematics3 marksA market gardener's watering system is modelled by a network with water outlets at vertices including A and L, where the lengths of edges are in metres. Using the diagram, determine the minimum distance between A and L. Describe this shortest path.Show worked answer β
(3 marks) Find the shortest path by systematically tracking the least cumulative distance to each vertex from A (a shortest-path search through the network).
Label A with 0. For each neighbouring vertex, record the running total distance along the edge from A.
Always extend from the vertex with the smallest confirmed total, updating a neighbour's total only if the new route is shorter.
Continue until L is reached. The smallest total recorded at L is the minimum distance.
State the answer as the route (the sequence of vertices, for example A to ... to L) and its total length in metres. Markers want both the path described and the distance.
2023 TASC General Mathematics1 marksFigure 8 is a graph of the network of walking tracks in a national park (Ranger Station A and camps B to G), with track lengths marked. The ranger wishes to walk every track in the park to check them, without travelling the same track twice, starting and finishing at the Ranger Station. What mathematical name is given to this type of route?Show worked answer β
(1 mark) A route that travels every edge (track) of a network exactly once and returns to its starting vertex is an Eulerian circuit (also accepted: Eulerian trail when start and finish differ). Because the ranger starts and finishes at the same vertex (the Ranger Station) and uses every track once, the correct name is an Eulerian circuit.