Skip to main content

Worked Solutions

Networks — Worked Solutions (HSC Maths Standard 2)

By Samadhi · Intuition tutor 1 min read

Created with Intu AI Reviewed by Intuition's expert tutors

Studying this? See our HSC Maths Standard 2 course →

Worked examples for HSC Maths Standard 2 networks. Each shows where the marks are awarded, the key idea, and the full solution explained by your choice of tutor — Stella, Ella or Cassie.

How to use these

Try each question first, then check your working. Use the tutor tabs to read the full solution in the style that suits you: Stella is direct and challenging, Ella is warm and explains the why, and Cassie is concise and analytical.

Example 1 — Shortest path

Standard 3 marks

Question

A delivery network connects depot $A$ to warehouse $E$. The roads (in km) are:

$A\text{–}B = 4$, $A\text{–}C = 3$, $B\text{–}D = 5$, $C\text{–}B = 1$, $C\text{–}D = 6$, $D\text{–}E = 2$, $C\text{–}E = 9$.

Find the length of the shortest path from $A$ to $E$, and state the route.

Solution

Work out the shortest distance to each vertex from $A$, building up.

  • To $C$: directly $A\text{–}C = 3$.
  • To $B$: either $A\text{–}B = 4$, or $A\text{–}C\text{–}B = 3 + 1 = 4$. Shortest $= 4$.
  • To $D$: via $B$, $4 + 5 = 9$; via $C$, $3 + 6 = 9$. Shortest $= 9$.
  • To $E$: via $D$, $9 + 2 = 11$; direct $C\text{–}E$, $3 + 9 = 12$. Shortest $= 11$.

Shortest path is 11 km, route $A\text{–}C\text{–}D\text{–}E$ (or $A\text{–}B\text{–}D\text{–}E$, also 11). Always compare every way into a vertex before locking in its label.

Where the marks go

  • 1 mark: Correct shortest distances to intermediate vertices $B$, $C$
  • 1 mark: Correct shortest distance to $D$ (9 km)
  • 1 mark: Correct shortest path of 11 km with a valid route

Key idea

Find the shortest distance to each vertex in turn, comparing every route into it; the answer reuses the best distances already established.

Example 2 — Minimum spanning tree

Standard 4 marks

Question

A council wants to lay fibre cable connecting five parks $P$, $Q$, $R$, $S$ and $T$. The possible connections (in hundreds of metres) are:

$P\text{–}Q = 7$, $P\text{–}R = 5$, $Q\text{–}R = 9$, $Q\text{–}S = 8$, $R\text{–}S = 6$, $R\text{–}T = 4$, $S\text{–}T = 3$.

(a) Find the minimum spanning tree and state its total length.

(b) Explain why a minimum spanning tree connecting 5 parks always uses exactly 4 connections.

Solution

(a) Build the tree by adding the cheapest edge that doesn't form a cycle (Kruskal's method).

  • $S\text{–}T = 3$ ✓ (connects $S$, $T$)
  • $R\text{–}T = 4$ ✓ (adds $R$)
  • $P\text{–}R = 5$ ✓ (adds $P$)
  • $R\text{–}S = 6$ ✗ — $R$ and $S$ already linked, forms a cycle, skip
  • $P\text{–}Q = 7$ ✓ (adds $Q$ — all 5 connected)

Total $= 3 + 4 + 5 + 7 = 19$ (i.e. 1900 m).

(b) A spanning tree on $n$ vertices always has $n - 1$ edges, so $5 - 1 = 4$. Reject any edge that closes a cycle — that's where marks go.

Where the marks go

  • 1 mark: Selects edges in increasing weight, avoiding cycles
  • 1 mark: Correct set of MST edges (ST, RT, PR, PQ)
  • 1 mark: Correct total length of 19 (1900 m)
  • 1 mark: Explains a spanning tree on $n$ vertices has $n - 1$ edges

Key idea

A minimum spanning tree adds the cheapest edges that avoid cycles until all vertices connect; on $n$ vertices it always has exactly $n - 1$ edges.