C 09 Graphs and Networks
C 09 Graphs and Networks
C 09 Graphs and Networks
LEARNING SEQUENCE
9.1 Overview ................................................................................................................................................................. 486
9.2 Definitions and terms ......................................................................................................................................... 487
9.3 Planar graphs ........................................................................................................................................................ 506
9.4 Connected graphs .............................................................................................................................................. 516
9.5 Weighted graphs and networks, and trees ................................................................................................ 526
9.6 Review ..................................................................................................................................................................... 542
9.1.1 Introduction
Just like matrices, networks are used to show how things are
connected. The idea of networks and graph theory is usually
credited to Leonhard Euler’s 1736 work, Seven Bridges of
Königsberg. This work carried on with the analysis initiated by
Leibniz.
One of the most famous problems in graph theory is the ‘four
colour problem’, which poses the question: ‘Is it true that any map
drawn in the plane may have its regions coloured with four colours,
in such a way that any two regions having a common border have
different colours?’ This question was first posed by Francis Guthrie
in 1852. There have been many failed attempts to prove this. The ‘four colour problem’ remained unsolved
for more than a century, until in 1969 Heinrich Heesch published a method for solving the problem using a
computer. Computers allowed networks to be used to solve problems that previously took too long due to the
multitude of combinations.
Procedures called algorithms are applied to networks to calculate maximum and minimum values. This study
of constructed networks belongs to a field of mathematics called operational research. This developed rapidly
during and after World War II, when mathematicians, industrial technicians and members of the armed services
worked together to improve military operations.
In more recent times, graph theory and networks have been used to deliver mail, land people on the moon,
organise train timetables and improve the flow of traffic. Graph theory and networks have also been applied to
a wide range of disciplines from social networks where they are used to examine the structure of relationships
and social identities, to biological networks, which analyse molecular networks.
KEY CONCEPTS
This topic covers the following key concepts from the VCE Mathematics Study Design:
• the introduction to the notations, conventions and representations of types and properties of graphs,
including edge, loop, vertex, the degree of a vertex, isomorphic and connected graphs and the adjacency
matrix
• description of graphs in terms of faces (regions), vertices and edges, and the application of Euler’s
formula for planar graphs
• connected graphs: walks, trails, paths, cycles and circuits with practical applications
• weighted graphs and networks, and an introduction to the shortest path problem (solution by inspection
only) and its practical application
• trees and minimum spanning trees, greedy algorithms, and their use to solve practical problems.
Source: VCE Mathematics Study Design (2023–2027) extracts © VCAA; reproduced by permission.
486 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
9.2 Definitions and terms
LEARNING INTENTION
At the end of this subtopic you should be able to:
• define edge, loop, vertex and the degree of a vertex
• identify properties and types of graphs, including isomorphic and connected graphs
• identify characteristics of and construct adjacency matrices.
9.2.1 Graphs
The mathematician Leonhard Euler (1707–83) is usually
credited with being the founder of graph theory. He
famously used it to solve a problem known as the ‘Seven
Bridges of Königsberg’.
For a long time it had been pondered whether it
was possible to travel around the European city of
Königsberg (now called Kaliningrad) in such a way that
the seven bridges would only have to be crossed once
each.
In the branch of mathematics known as graph theory,
diagrams involving points and lines are used as a
planning and analysis tool for systems and connections.
Applications of graph theory include business efficiency,
transportation systems, design projects, building and
construction, food chains and communications networks.
Leonhard Euler
4
2
1
3
6
5
7
Bridges of Königsberg
C
B
In a graph, the lines are called edges and the points are called
vertices (or nodes), with each edge joining a pair of vertices.
Although edges are often drawn as straight lines, they don’t have to be. D Vertex E
When vertices are joined by an edge, they are known as ‘adjacent’ vertices. Note that the edges of a graph can
intersect without there being a vertex. The graph above has five edges and five vertices.
Simple graphs
A simple graph is one in which pairs of vertices are connected by at most one edge.
C A A D
A C
D B
B
E B
C
D F
Connected graphs
If it is possible to reach every vertex of a graph by moving along the edges, it is called a connected
graph; otherwise, it is a disconnected graph.
The graph below left is an example of a connected graph, while the graph below right is not connected (it is
disconnected).
A C
A
D
D
B
C E E
Connected graph Disconnected graph
A bridge
A bridge is an edge that disconnects the graph when removed.
Note: A graph can have more than one bridge.
488 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
In the following graph, the edge AB is a bridge, because if it is removed, the graph would become disconnected.
Can you identify another edge that would be classified as a bridge?
A B
D C
Winton
Boulia
Longreach
Bedourie
Jundah
Windorah
Birdsville
Boulia
Longreach
Bedourie
Jundah
Windorah
Birdsville
As there is more than one route connecting Birdsville to Windorah and Birdsville to Bedourie, each route is
represented by an edge in the graph. In this case, we say there are multiple edges. Also, as it is possible to travel
along a road from Birdsville that returns without passing through another town, this is represented by an edge.
When this happens, the edge is called a loop.
Multiple edge
A multiple edge occurs when two vertices are connected by more than one edge.
Since graphs can be used to model practical real-life situations, it becomes clear that two types of graphs are
needed. Sometimes it may only be possible to move along an edge in one direction, say a one-way street, or it
could be possible to move along an edge in both directions.
So far, the graphs you have seen are all examples of undirected graphs where we assume you can move along
an edge in both directions. Graphs that only allow movement in a specified direction are called directed graphs
or digraphs, and these edges will contain an arrow indicating the direction of travel allowed.
A B A B
D C D C
An undirected graph A directed graph
(travel along an edge in any direction) (arrows show the direction you must travel)
The diagram represents a system of paths and gates in a large park. Draw a graph to represent the
possible ways of travelling to each gate in the park.
490 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
THINK WRITE/DRAW
1. Identify, draw and label all possible vertices. Represent each gate as a vertex.
A
D
E
2. Draw edges to represent all the direct Direct pathways exist for
connections between the identified vertices. A–B, A–D, A–E, B–C, C–E and D–E.
A
D
E
3. Identify all the other unique ways of Other unique pathways exist for
connecting vertices. A–E, D–E, B–D and C–D.
A
D
E
D
E
E F
A
D
F
E
THINK WRITE
1. Identify the degree of each deg(A) = 2, deg(B) = 3, deg(C) = 3,
vertex. deg(D) = 3, deg(E) = 3 and deg(F) = 2
2. Calculate the sum of the The sum of the degrees for the graph = 2 + 3 + 3 + 3 + 3 + 2
degrees for the graph. = 16
3. Count the number of edges The graph has the following edges:
for the graph. A–B, A–E, B–C, B–D, C–D, C–F, D–E, E–F. The graph has 8 edges.
4. Write the answer as The total number of edges in the graph is therefore half the sum of
a sentence. the degrees.
492 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
9.2.4 Isomorphic graphs
Consider the following graphs.
B C
A D
C E
A
B E
D
For the two graphs, the connections for each vertex can be summarised as shown in the table.
Although the graphs don’t look exactly the same, they could represent exactly the same information. Such
graphs are known as isomorphic graphs.
Vertex Connections
A D
B D E
C D E
D A B C
E B C
Isomorphic graphs
Isomorphic graphs have the same number of vertices and edges, with corresponding vertices having
identical degrees and connections.
THINK WRITE
1. Identify the degree of the vertices for each
Graph A B C D E
graph.
Graph 1 2 3 2 2 3
Graph 2 2 3 2 2 3
4. Comment on the two graphs. The two graphs are isomorphic as they have the same
number of vertices and edges, with corresponding
vertices having identical degrees and connections.
Adjacency matrices
Each column and row of an adjacency matrix corresponds to a vertex of the graph, and the numbers
indicate how many edges connect them.
C 0 2 1 0
A
⎡ ⎤
⎢2 0 0 0⎥
⎢1 0 0 2⎥
⎢ ⎥
⎣0 0 2 0⎦
D
B
Graph Adjacency matrix
In the adjacency matrix, column 3 corresponds to vertex C and row 4 corresponds to vertex D. The ‘2’ indicates
the number of edges joining these two vertices.
A B C D
A 0 2 1 2
[0 ]
B 2 0 0 0
C 1 0 0 2
D 0 2 0
494 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
9.2.6 Characteristics of adjacency matrices
Adjacency matrices are square matrices with n rows and Column: 1 2 … n − 1 n R ow
columns, where n is equal to the number of vertices in the
0 2 … 1 0 1
[ ]
graph. 2 0 … 0 0 2
⋮ ⋮ … ⋮ ⋮ ⋮
1 0 … 0 2 n − 1
0 0 … 2 0 n
[0 ]
0 2 1 0
diagonal. 2 0 0 0
1 0 0 2
0 2 0
[ 12 ]
0 2 1 2
the existence of a loop. 2 1 0 0
0 0 2
0 2 0
B C
[1 ]
0 0 0 1
(a vertex that is not connected to any other vertex). 0 0 0 0
0 0 0 1
0 1 0
B
A
C D
D
C
THINK WRITE
1. Draw a table with rows and columns for each
A B C D E F
vertex of the graph.
A
B
C
D
E
F
Resources
Resourceseses
Interactivity The adjacency matrix (int-6466)
496 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
9.2 Exercise
1. WE1 The diagram shows the plan of a floor of a house. Draw a graph to represent the possible ways of
Bedroom 1
Bathroom 1
Lounge
Bedroom 2
Bathroom 2 TV room
A
B
C
D
G E
H F
I
3. WE2 For each of the following graphs, verify that the number of edges is equal to half the sum of the degree
of the vertices.
a. B b. F
F
B
C
A E
A
E
D
C
E A
B
C
C D
G
D
B
A
B
C
c. C d. D
B D A E
C
A B
E
D
B C B
Graph 1 Graph 2
b. A
G
F
E
A D
C E
G
F
C B B
Graph 1 Graph 2
498 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
c. D F
A
G B
B D
E G
E
A
C C
Graph 1 Graph 2
d. D G
I
E C
F
D J
H B F
G
E
I
C A A
B
J H
Graph 1 Graph 2
E
E
D
C
C
D
Graph 1 Graph 2
b. B
B F G
A
C
E F D
H
G A E
C
D H
Graph 1 Graph 2
C
B A
B
B A
D E
C C
F F
A
F E
D E D
Graph 1 Graph 2 Graph 3
F C A
D D
A
C
C B
B E
E
D A B
Graph 4 Graph 5 Graph 6
B E
C A A
B
C
E D
D F
Graph 7 Graph 8
A
B E
A
F B
C C
D D
c. d. C
E
A
A
B
E C D
F
D
B F
500 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
10. Draw graphs to represent the following adjacency matrices.
a. 0 1 0 1 b. 1 0 2 0
⎡ ⎤ ⎡ ⎤
⎢1 0 0 1⎥ ⎢0 0 0 1⎥
⎢0 0 0 1⎥ ⎢2 0 0 2⎥
⎢ ⎥ ⎢ ⎥
⎣1 1 1 0⎦ ⎣0 1 2 0⎦
c. 0 1 2 0 0 d. 2 0 1 1 0
⎡ ⎤ ⎡ ⎤
⎢1 1 0 0 1⎥ ⎢0 0 0 0 0⎥
⎢2 0 0 1 0⎥ ⎢1 0 1 0 2⎥
⎢ ⎥ ⎢ ⎥
⎢0 0 1 1 1⎥ ⎢1 0 0 0 1⎥
⎣0 1 0 1 1⎦ ⎣0 0 2 1 0⎦
11. Construct the adjacency matrices for each of the graphs shown in question 15.
c. 0 1 0 d. 0 0 0 1 0
⎡ ⎤ ⎡ ⎤
⎢0 0 0⎥ ⎢0 0 0 1 0⎥
⎢ 0 0 0 2⎥ ⎢ 0 0 0 1⎥
⎢ ⎥ ⎢ ⎥
⎢1 0 0 0 1⎥ ⎢ 0 0⎥
⎣0 1 0⎦ ⎣0 0 1⎦
14. By indicating the passages with edges and the intersections and passage endings with vertices, draw a graph
to represent the maze shown.
Maze
Simple Connected
Graph 1 Yes Yes
Graph 2
Graph 3
Graph 4
Graph 5
B C
A C
D
D
B D
B
E
C A E
A F
Graph 1 Graph 2 Graph 3
C E
D E
C F
B A
B
F
D
Graph 4 Graph 5
16. A round robin tournament occurs when each team plays all other teams once only.
At the beginning of the school year, five schools play a round robin competition in table tennis.
a. Draw a graph to represent the games played.
b. State what the total number of edges in the graph indicates.
Yanqing Miyun
Huairou
Changping Pinggu
Shunyi
502 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
18. Jetways Airlines operates flights in South-East Asia.
MYANMAR
Hanoi
LAOS
THAILAND VIETNAM
Manila
Bangkok Phnom PHILIPPINES
Penh
Kuala CAMBODIA
Lumpur MALAYSIA
BRUNEI
SINGAPORE Singapore
The table indicates the number of direct flights per day between key cities.
Question 1 (1 mark)
Source: VCE 2021, Further Mathematics Exam 1, Section B, Module 2, Q1; © VCAA.
MC Consider the graph below.
Question 2 (1 mark)
Source: VCE 2020, Further Mathematics Exam 1, Section B, Module 2, Q8; © VCAA.
MC The adjacency matrix below shows the number of pathway connections between four landmarks: J, K, L
and M.
J K L M
J ⎡1 3 0 2⎤
K ⎢3 0 1 2⎥
L ⎢⎢0 1 0 2⎥⎥
M ⎣2 2 2 0⎦
L L
M M
C. D. K
K J
J
L
L
M
M
504 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
E. K
J
L
M
Question 3 (1 mark)
Source: VCE 2017, Further Mathematics Exam 1, Section B, Module 2, Q1; © VCAA.
MC Which one of the following graphs contains a loop?
A. B.
C. D.
E.
As indicated in Subtopic 9.2, graphs can be drawn with intersecting edges. However, in many applications
intersections may be undesirable. Consider a graph of an underground railway network. In this case, intersecting
edges would indicate the need for one rail line to be in a much deeper tunnel, which could add significantly to
construction costs.
In some cases it is possible to redraw graphs so that they have no intersecting edges. When a graph can be
redrawn in this way, it is known as a planar graph.
506 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
For example, in the graph shown below, it is possible to redraw one of the intersecting edges so that it still
represents the same information.
B B
This graph A
A can be redrawn as
C
C
D
D
E
B
A
C
D
THINK WRITE/DRAW
1. List all connections in the original graph. Connections: AB; AF; BD; BE; CD; CE; DF
2. Draw all vertices and any section(s) of the E
graph that have no intersecting edges. A
B
C
D
C
D
C
D
Note: Although a graph may not appear to be planar, by modifying the placement of some edges, the graph may become planar.
f5
A B
A A B
H F
C D
B C C D G
Graph 1 Graph 2 Graph 3
The number of vertices, edges and faces for each graph is summarised in the following table.
For each of these graphs, we can obtain a result that is well known for any connected planar graph: the
difference between the vertices and edges added to the number of faces will always equal 2.
Graph 1: 3 − 3 + 2 = 2
Graph 2: 4 − 5 + 3 = 2
Graph 3: 8 − 12 + 6 = 2
This is known as Euler’s formula for connected planar graphs.
508 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
Euler’s formula
For any connected planar graph:
v−e+f=2
where v is the number of vertices, e is the number of edges and f is the number of faces (regions).
Determine the number of faces in a connected planar graph of 7 vertices and 10 edges.
THINK WRITE
1. Substitute the given values into Euler’s v−e+f = 2
formula. 7 − 10 + f = 2
3. Write the answer as a sentence. There will be 5 faces in a connected planar graph with
7 vertices and 10 edges.
Resources
Resourceseses
Interactivities Planar graphs (int-6467)
Euler’s formula (int-6468)
9.3 Exercise
1. WE5 Redraw the following graphs so that they have no intersecting edges.
a. B b. A D
A
F
C
C
D
E B
G E
I
G I
E
D E D
B
B
C. A C D. F A C H
G D E I
D E
B
B
b. A. B B. B C. B D. B
C C C C
A A A A
G G G G
F F F
E D F D
E D E D E
3. Redraw the following graphs to show that they are planar.
a. G b. G A
C E
C
H
B
B
A
E
D
D
F F
E F
C
A
A
D
B
C E D
Graph 1 Graph 2
510 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
A
C
D
G
A B C D
F
E
E F G H B
Graph 3 Graph 4
5. WE6 State the number of faces for a connected planar graph of:
a. 8 vertices and 10 edges
b. 11 vertices and 14 edges.
6. a. For a connected planar graph of 5 vertices and 3 faces, state the number of edges.
b. For a connected planar graph of 8 edges and 5 faces, state the number of vertices.
7. For each of the following planar graphs, identify the number of faces.
a. C D b. C
B
D
A E A
E
c. D d. E H
C
E
G
B D
B I
F
A
A C
G F
8. Construct a connected planar graph with:
a. 6 vertices and 5 faces
b. 11 edges and 9 faces.
9. Use the following adjacency matrices to draw graphs that have no intersecting edges.
a. 0 1 1 1 0 b. 0 0 1 1 0
⎡ ⎤ ⎡ ⎤
⎢1 0 1 1 0⎥ ⎢0 0 0 1 1⎥
⎢1 1 0 0 1⎥ ⎢1 0 0 0 0⎥
⎢ ⎥ ⎢ ⎥
⎢1 1 0 0 1⎥ ⎢1 1 0 0 1⎥
⎣0 0 1 1 0⎦ ⎣0 1 0 1 0⎦
10. For the graphs you drew in question 9:
i. identify the number of enclosed faces
ii. identify the maximum number of additional edges that can be added to maintain a simple planar graph.
A C
B C A D
Graph 1 Graph 2
B C D G H
C
A D
B E
I
A
F J
F E K
Graph 3 Graph 4
12. a. Use the planar graphs shown to complete the given table.
B D
C
A
D
E
E A
C F
Graph 1 Graph 2
512 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
K
D E
C
E F J
A
B F
G D G
A H C H
Graph 3 B I
L
Graph 4
Total vertices of even degree Total vertices of odd degree
Graph 1
Graph 2
Graph 3
Graph 4
V3
R1 R2 R6 R8
C1
R7
R3 R4
V6
V2 R9
V5
a. Draw a graph to represent the circuit board, using vertices to represent the labelled parts of the diagram.
b. State whether it is possible to represent the circuit board as a planar graph.
Question 1 (1 mark)
Source: VCE 2020, Further Mathematics Exam 1, Section B, Module 2, Q1; © VCAA.
MC A connected planar graph has seven vertices and nine edges.
The number of faces that this graph will have is
A. 1
B. 2
C. 3
D. 4
E. 5
Question 2 (1 mark)
Source: VCE 2016, Further Mathematics Exam 1, Section B, Module 2, Q5; © VCAA.
MC Consider the planar graph below.
Which one of the following graphs can be redrawn as the planar graph above?
514 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
A. B.
C. D.
E.
Question 3 (1 mark)
Source: VCE 2013, Further Mathematics, Exam 1, Section B, Module 5, Q7; © VCAA.
MC A connected graph consists of five vertices and four edges.
Consider the following five statements.
• The graph is planar.
• The graph has more than one face.
• All vertices are of even degree.
• The sum of the degrees of the vertices is eight.
• The graph cannot have a loop.
How many of these statements are always true for such a graph?
A. 1
B. 2
C. 3
D. 4
E. 5
More exam questions are available online.
B B B
C C C
A A A
D D D
E E E
Walk: ABCADCB Trail: ABCADC Path: ABCDE
516 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
B
B
C
C
A
A
D
D
E E
Cycle: ABCDA Circuit: ABCADEA
THINK WRITE
1. For a cycle, identify a route that doesn’t repeat a vertex Cycle: ABDCA
and doesn’t repeat an edge, apart from the start/finish.
2. For a circuit, identify a route that doesn’t repeat an edge Circuit: ADBCA
and ends at the starting vertex.
B
D
B
A
A C
E
G
E
D F
Euler trail: CDECABE Euler circuit: ABCADGAFEA
Note that in the examples shown, the vertices for the Euler circuit are of even degree, and there are 2 vertices of
odd degree for the Euler trail.
Moscow
London
Berlin
Paris
Madrid Rome
Athens
518 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
Hamiltonian paths and Hamiltonian cycles reach all vertices of a network once without necessarily using all of
the available edges.
B B
A A
C C
D D
E E
Hamiltonian path: ABCDE Hamiltonian cycle: ABCEDA
A B
G
C F
E
D H
THINK WRITE/DRAW
1. For an Euler trail to exist, deg(A) = 3, deg(B) = 5, deg(C) = 4, deg(D) = 4, deg(E) = 4,
there must be exactly 2 vertices deg(F) = 4, deg(G) = 2, deg(H) = 2
with an odd degree. As there are only two odd-degree vertices, an Euler
trail must exist.
2. Identify a route that uses each B G
A
edge once. Begin the route at
one of the odd-degree vertices C
F
and finish at the other.
E
D
H
D
H
9.4 Exercise
1. WE7 In the following network, identify two different routes: one cycle and one circuit.
B
E
C
2. In the following network, identify three different routes: one path, one cycle and one circuit.
B G
A E
D
C
H
3. State which of the terms walk, trail, path, cycle and circuit could
A B C D E
be used to describe the following routes on the graph shown.
a. AGHIONMLKFGA
b. IHGFKLMNO
F G H I
c. HIJEDCBAGH J
d. FGHIJEDCBAG
K L M N O
520 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
4. Use the following graph to identify the indicated routes.
E
F
D
G
M
B L K J I H C
B
E
B E
A
F
A
F G
6. Identify an Euler circuit and a Hamiltonian cycle in each of the following graphs, if they exist.
a. C D
E
B
J
F
A
I
G
H
b. C
H
E
A B
F
G
E E
B C B C
F
iii. H iv. G
D D
A A
E E
C
B C B
G
F F
a. Identify which of the graphs have an Euler trail.
b. Identify the Euler trails found.
c. Identify which of the graphs have a Hamiltonian cycle.
d. Identify the Hamiltonian cycles found.
e. Construct adjacency matrices for each of the graphs.
f. Explain how these might assist with making decisions about the existence of Euler trails and circuits, and
Hamiltonian paths and cycles.
8. In the following graph, if an Euler trail commences at vertex A, identify the vertices at which it could finish.
D
E
F
H
522 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
9. In the following graph, identify at which vertices a Hamiltonian path could finish if it commences by
travelling from:
a. B to E b. E to A.
A
C
10. In the following graph, other than from G to F, identify the 2 vertices between which you must add an edge
in order to create a Hamiltonian path that commences from:
a. vertex G b. vertex F.
A
B
F
D
E
B
A E
G
D
H
C
I
F
13. a. Use the following graph to complete the table to identify all of the Hamiltonian cycles commencing at
vertex A.
C
Hamiltonian cycle
1. ABCDA B
2.
3.
4.
5. D
6.
A
14. The graph shown outlines the possible ways a tourist bus can travel G
between eight locations. B
524 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
9.4 Exam questions
Question 1 (1 mark)
Source: VCE 2021, Further Mathematics Exam 1, Section B, Module 2, Q5; © VCAA.
MC Consider the following five statements about the graph shown:
• The graph is planar.
• The graph contains a cycle.
• The graph contains a bridge.
• The graph contains an Eulerian trail.
• The graph contains a Hamiltonian path.
How many of these statements are true?
A. 1 B. 2 C. 3 D. 4 E. 5
Question 2 (1 mark)
Source: VCE 2020, Further Mathematics Exam 1, Section B, Module 2, Q2; © VCAA.
MC Consider the graph below.
A C
E
G
Which one of the following is not a Hamiltonian cycle for this graph?
A. ABCDFEGA B. BAGEFDCB C. CDFEGABC
D. DCBAGFED E. EGABCDFE
Question 3 (1 mark)
Source: VCE 2019, Further Mathematics Exam 1, Section B, Module 2, Q2; © VCAA.
MC Consider the graph below.
The minimum number of extra edges that are required so that an Eulerian circuit is possible in this graph is
A. 0 B. 1 C. 2 D. 3 E. 4
More exam questions are available online.
THINK WRITE
1. Identify the Hamiltonian paths that connect Possible paths:
the two vertices. a. ABGEFHCD
b. ABCHGEFD
c. AEGBCHFD
d. AEFGBCHD
e. AEFHGBCD
3. Write the answer as a sentence. The shortest distance from A to D that travels to all
vertices is 19 km.
526 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
9.5.2 Trees
A tree is a simple connected graph with no circuits. As such, A
any pair of vertices in a tree is connected by a unique path,
and the number of edges is always 1 less than the number of
vertices. G
A A A
G A G A G
G G
B C D B C D B C D
H H H
B C D B C D
I H I H I
F E I F E I F E
F E F E
Step 3 32 9 2 6 Step 3 32 9 2 6
A minimum spanning tree is a spanning tree with the lowest total weighting. Prim’s algorithm and Kruskal’s
algorithm are examples of greedy algorithms that find a minimum spanning tree. When applied correctly,
these greedy algorithms will always find the optimal solution. The proof that Prim’s algorithm and Kruskal’s
algorithm produce a minimum spanning tree for every connected weighted graph is beyond the scope of this
course.
A 3 F
528 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
THINK DRAW
a. 1. Draw the vertices of the graph and include a. C
G
the edge with the lowest weight.
Note: Since BE, EF, DE and DF all have a weight
of 1, choose any of these edges. B
E
1 D
A F
A F
A F
2
B
E
1 D
2 1
1
A F
The length of this minimum spanning tree is still 9. Determine how many different minimum spanning trees are
possible.
a. Use Kruskal’s algorithm to identify the minimum spanning tree of the graph shown.
b. Determine the length of the minimum spanning tree.
B 8 F 7 G
4 2 9
4
A 11 E 14 I
7
8 6 10
C 1 D 2 H
530 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
THINK DRAW
a. 1. Draw the vertices of the graph. a. B F G
Identify the edge with the lowest
weight and include this edge
in the minimum spanning tree.
Edge CD has the lowest E
A I
weight, 1.
C 1 D H
C 1 D 2 H
C 1 D 2 H
6. The next edge of lowest weight
has a weight of 6 (edge DE).
Check if adding this edge to the
minimum spanning tree creates a
circuit.
Adding this edge will create a
circuit, so do not include this
edge.
532 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
9. The next edge of lowest weight B F 7 G
has a weight of 9 (edge GI).
Check if adding this edge to the
4 2 9
minimum spanning tree creates a
circuit. E 4
A I
Adding this edge would not
create a circuit, so include it in
the minimum spanning tree. 8
C 1 D 2 H
10. At this stage all vertices have The minimum spanning tree is:
been reached, so we have the
completed minimum spanning B F 7 G
tree.
Also, since the original graph 4 2 9
has 9 vertices, the minimum
spanning tree should contain 8 E 4
A I
edges.
C 1 D 2 H
Resources
Resourceseses
Interactivity Minimum spanning trees and Prim’s algorithm (int-6285)
1. WE9 Use the graph to identify the shortest distance to travel from A to D that goes to all vertices.
B
2
C
5
4
4
A G 3
H 2 D
2 5
E 2 3
6
F
2. Use the graph to identify the shortest distance to travel from A to I that goes to all vertices.
C 2.5 G
2.92
2.42 1.96
D F
A B I
1.63 2.28 1.96
2.68
2.97
2.26 2.65
E 2.36 H
B
F C C
A
G B
A E
534 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
4. A truck starts from the main distribution point at vertex A E
and makes deliveries at each of the other vertices before
returning to A.
22
Determine the shortest route the truck can take. 7 8
6 D
G
18 C
8 12 9
14
B 11 A
a. A b. G
A
B B
C C
H
F
F
D
D
E
E
c. G d. G
A A
J J
B
B
C C
H K H K
L
M
F D F
D
I I
E E
G 3 L
A 200 B M C D
100 100 200
100 100
141 141
F 200 E
G H
100 100
I K
J
141 141
8. Identify the minimum spanning tree for each of the following graphs.
a. C b. A
38 25 9 7
B
D C 10
20 41 B D
20 E 8
21
A 28 26 H
14 12 10 14
19 7
F
G 32
9 G
E 9 F
9. Draw diagrams to show the steps you would follow when using F
3 4 G
Prim’s algorithm to identify the minimum spanning tree for the C
3 1 3
following graph. 3
2 3 E
1
2 J
5 I D
6
2 3
7
B 4 4
10. WE11 For each of the following graphs: A 2
i. use Kruskal’s algorithm to identify the minimum spanning tree 3
5
ii. state the length of the minimum spanning tree.
H
a. B
35
E
11
22
48
16
A C 25
G
12
25 37
F
11
D
536 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
b. B
5
4
E
8
A 4
7
D G
6
4 9
7
F
9
C
c. 15 d. A 7 B 6 C
A B
13 5 3 8
10
12 D F
C D 4 E 6
17 5 9
19
13
G 8 H
E 21 F 16 G
e. A 3 B
10 9 6 11
C D E
5 6
3 2
F 3 G
11. Consider the graph shown.
B 5 C
5 6
5 4
A D
7 7
G
6 6
5 5
E F
a. If an edge with the highest weighting is removed, identify the shortest Hamiltonian path.
b. If the edge with the lowest weighting is removed, identify the shortest Hamiltonian path.
G 50 F
14. The organisers of the Tour de Vic bicycle race are using the following map to plan the event.
Shepparton
122 km
Bridgewater
40 km 82 km
60 km
Bendigo
38 km
Maryborough Seymour
Castlemaine
89 km
48 km 117 km
Ararat
99 km
98 km Ballarat 38 km
Sunbury
57 km
Bacchus Marsh
103 km
86 km 58 km
77 km Geelong
Colac
I
C F
B
E
D
Flights operate between selected locations, and the flight distances (in km) are shown in the following table.
A B C D E F G H I
A 1090 960 2600 2200
B 1090 360 375 435
C 360
D 960 375
E 435
F 1590 1400
G 2600 1590 730
H 1400 730 220
I 2200 220
Question 1 (1 mark)
Source: VCE 2020, Further Mathematics Exam 1, Section B, Module 2, Q3; © VCAA.
2
4
1
5
3
MC Which one of the following is not a spanning tree for the network above?
A. 2 B. 2
4 4
1 1
3 5 3 5
6 6
C. 2 D. 2
4 4
1 1
3 5 5
3
6 6
E. 2
4
1
3 5
540 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
Question 2 (1 mark)
Source: VCE 2020, Further Mathematics Exam 1, Section B, Module 2, Q5; © VCAA.
MC The network below shows the distances, in metres, between camp sites at a camping ground that has
electricity.
The vertices A to I represent the camp sites.
C 7 D
10
B
8
7 11
10 E 5
x F
A 8
G 6
9
5 7
6
I
H 10
The minimum length of cable required to connect all the camp sites is 53 m.
The value of x, in metres, is at least
A. 5 B. 6 C. 8 D. 9 E. 11
Question 3 (1 mark)
Source: VCE 2019, Further Mathematics Exam 1, Section B, Module 2, Q5; © VCAA.
MC The following diagram shows the distances, in metres, along a series of cables connecting a main server to
seven points, A to G, in a computer network.
A 28 B
36 38
main server 35 C
15
40
D
28 E
33 35
30
32
F G
The minimum length of cable, in metres, required to ensure that each of the seven points is connected to the
main server directly or via another point is
A. 175 B. 203 C. 208 D. 221 E. 236
More exam questions are available online.
9.6 Exercise
Multiple choice
1. MC The minimum number of edges in a connected graph with eight vertices is:
A. 5 B. 6 C. 7 D. 8 E. 9
E F E F
B B
C. G D. G
D D
H
C A C A
H
E F F
E
B B
E. G
D
H
C A
E F
542 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
3. MC A connected graph with 9 vertices has 10 faces. The number of edges in the graph is:
A. 15 B. 16 C. 17 D. 18 E. 19
4. MC Select the graph that is a spanning tree for the following graph.
G
D
C H
E
F
B A
A. G B. G
D D
C H C H
E E
F F
B A B A
C. G D. G
D D
C H C H
E E
F F
B A B A
E. G
D
C H
E
F
B A
A G
6
A. 33 B. 26 C. 34 D. 31 E. 30
6. MC An Euler circuit can be created in the following graph by adding an edge between the vertices:
B A
D
C E
B
D
A. 0 2 2 2 B. 0 1 1 0 C. 0 2 1 1
⎡ ⎤ ⎡ ⎤ ⎡ ⎤
⎢2 0 2 0⎥ ⎢1 0 1 0⎥ ⎢2 1 2 0⎥
⎢2 2 0 1⎥ ⎢1 1 0 1⎥ ⎢1 2 1 1⎥
⎢ ⎥ ⎢ ⎥ ⎢ ⎥
⎣2 0 1 0⎦ ⎣1 0 1 0⎦ ⎣1 0 1 1⎦
D. 1 2 1 1 E. 0 2 1 1
⎡ ⎤ ⎡ ⎤
⎢2 0 2 0⎥ ⎢2 0 2 0⎥
⎢1 2 1 1⎥ ⎢1 2 0 1⎥
⎢ ⎥ ⎢ ⎥
⎣1 0 1 0⎦ ⎣1 0 1 0⎦
544 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
8. MC The number of faces in the planar graph shown is:
C
B G D
A. 6 B. 7 C. 8 D. 9 E. 10
E
G
F A
10. MC In the graph shown, select the number of edges that are bridges.
A. 0 B. 1 C. 2
D. 3 E. 4
Short answer
11. a. Identify whether the following graphs are planar or not planar.
i. C D ii. C D
B G
B F
E
E
F
A
G
A
B
B
E
F
C E
G G C
A
F
A
b. Redraw the graphs that are planar without any intersecting edges.
a. 1 1 0 1 b. 0 1 2 1
⎡ ⎤ ⎡ ⎤
⎢ 0 0⎥ ⎢ 0 0 1⎥
⎢ 3 1 ⎥ ⎢ 2 0 2 ⎥
⎢ ⎥ ⎢ ⎥
⎣ 1 0⎦ ⎢ 2 2⎥
⎣1 3 0⎦
c. 0 1 3 1 d. 0 0
⎡ ⎤ ⎡ ⎤
⎢2 0 1 ⎥ ⎢2 0 1 ⎥
⎢ 3 0 2 ⎥ ⎢1 2 0 1 1 0 ⎥
⎢ ⎢ ⎥
1 2 2 1⎥ ⎢3 0 1⎥
⎢ ⎥
⎢ 3 3 1⎥ ⎢ 2 0 0 3⎥
⎢ ⎥
⎣2 0 1 0⎦ ⎢1 1 2 0 0 2⎥
⎣0 0 1 0⎦
13. Identify which of the following graphs are:
i. simple ii. planar.
a. D C
A
E
F
G
b. B C
D
E
F
G
546 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
c. A d. A
F
D
B B
C C
E
e. A f. F
E
A
D
D
B
B
C
C
F E
g. F h. F
E A
A
E
D
C B
D
B
C
c. d.
C E
D G
F H
16. a. Determine the shortest distance from start to finish in the following graph.
Finish
17
5 8
2
9 4 11
2
3
4
Start
12 3
b. Calculate the total length of the shortest Hamiltonian path from start to finish.
c. Draw the minimum spanning tree for this graph.
Extended response
17. The flying distances between the capital cities of Australian mainland states and territories are listed in the
following table.
Adelaide Brisbane Canberra Darwin Melbourne Perth Sydney
Adelaide 2055 1198 3051 732 2716 1415
Brisbane 2055 1246 3429 1671 4289 982
Canberra 1198 1246 4003 658 3741 309
Darwin 3051 3429 4003 3789 4049 4301
Melbourne 732 1671 658 3789 3456 873
Perth 2716 4289 3741 4049 3456 3972
Sydney 1415 982 309 4301 873 3972
548 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
18. The diagram shows the streets in a suburb of a city with a section of underground tunnels shown in dark
blue. Weightings indicate distances in metres. The tunnels are used for utilities such as electricity, gas, water
and drainage.
B 695 E
G 580 F
a. i. If the gas company wishes to run a pipeline that minimises its total length but reaches each vertex,
calculate the total length required.
ii. Draw a graph to show the gas lines.
b. If drainage pipes need to run from H to A, calculate the shortest path they can follow. Determine how
long this path will be in total.
c. A single line of cable for a computerised monitoring system needs to be placed so that it starts at D and
reaches every vertex once. Calculate the minimum length possible and determine the path it must follow.
d. If a power line has to run from D so that it reaches every vertex at least once and finishes back at the start,
determine what path it must take to be a minimum.
19. A brochure for a national park includes a map showing the walking trails and available camping sites.
10
F
E
7
A 2 4
7 D
2 5
6 4 3
5 C
B
a. Draw a weighted graph to represent all the possible ways of travelling to the camp sites.
b. Draw the adjacency matrix for the graph.
c. Determine whether it is possible to walk a route that travels along each edge exactly once. Explain your
answer, and indicate the path if it is possible.
d. If the main entrance to the park is situated at A, calculate the shortest way to travel to each campsite and
return to A.
Flinders Island
King Island
Robbins
Island Devonport
Hobart Maria
Island
Bruny Island
a. Draw a weighted graph to represent all possible ways of travelling to the locations.
b. Calculate the shortest route from Hobart to Robbins Island.
c. Calculate the shortest way of travelling from Hobart to visit each location only once.
d. Calculate the shortest way of sailing from King Island, visiting each location once and returning to King
Island.
Question 1 (2 marks)
Source: VCE 2021, Further Mathematics Exam 2, Section B, Module 2, Q2; © VCAA.
George lives in Town G and Maggie lives in Town M.
The diagram below shows the network of main roads between Town G and Town M.
The vertices G, H, I, J, K, L, M, N and O represent towns.
The edges represent the main roads. The numbers on the edges indicate the distances, in kilometres, between
adjacent towns.
550 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
I 35 K L
25 30
20
15 44
H
J 50
26 N
30 16
32 M
42
G 28 O
a. What is the shortest distance, in kilometres, between Town G and Town M? (1 mark)
b. George plans to travel to Maggie’s house. He will pass through all the towns shown above.
George plans to take the shortest route possible.
Which town will George pass through twice? (1 mark)
Question 2 (4 marks)
Source: VCE 2020, Further Mathematics Exam 2, Section B, Module 2, Q3; © VCAA.
A local fitness park has 10 exercise stations: M to V.
The edges on the graph below represent the tracks between the exercise stations.
The number on each edge represents the length, in kilometres, of each track.
1.8
M
0.6 T
S
1.5
1.0 N
1.2
0.7
0.9
U
0.8
R 0.8 0.6 V O
1.2 1.2
0.4 1.4
Q 0.8 P
The Sunny Coast cricket coach designs three different training programs, all starting at exercise station S.
office
library
science
laboratories computer
rooms
mathematics
classrooms gymnasium
a. Which building in the school can be reached directly from all other buildings? (1 mark)
b. A school tour is to start and finish at the office, visiting each building only once.
i. What is the mathematical term for this route? (1 mark)
ii. Draw in a possible route for this school tour on the diagram below. (1 mark)
office
library
science
laboratories computer
rooms
mathematics
classrooms gymnasium
Question 4 (1 mark)
Source: VCE 2019, Further Mathematics Exam 1, Section B, Module 2, Q4; © VCAA.
MC Two graphs, labelled Graph 1 and Graph 2, are shown below.
Graph 1 Graph 2
552 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
Which one of the following statements is not true?
A. Graph 1 and Graph 2 are isomorphic.
B. Graph 1 has five edges and Graph 2 has six edges.
C. Both Graph 1 and Graph 2 are connected graphs.
D. Both Graph 1 and Graph 2 have three faces each.
E. Neither Graph 1 nor Graph 2 are complete graphs.
Question 5 (1 mark)
Source: VCE 2017, Further Mathematics Exam 1, Section B, Module 2, Q6; © VCAA.
MC An Eulerian trail for the graph above will be possible if only one edge is removed.
In how many different ways could this be done?
A. 1
B. 2
C. 3
D. 4
E. 5
More exam questions are available online.
BATH2 TV
2.
A C D D
B C
b.
E B
A
G
H
I F C
D
3. a. Edges = 7; degree sum = 14
a. Edges= 10; degree sum= 20
4. a. Edges= 9; degree sum= 18
b. Edges= 9; degree sum= 18 c.
5. a. deg(A) = 5; deg(B) = 3; deg(C) = 4; deg(D) = 1; A
deg(E) = 1 B
b. deg(A) = 0; deg(B) = 2; deg(C) = 2; deg(D) = 3;
deg(E) = 3
c. deg(A) = 4; deg(B) = 2; deg(C) = 2; deg(D) = 2;
deg(E) = 4 E
d. deg(A) = 1; deg(B) = 2; deg(C) = 1; deg(D) = 1;
deg(E) = 3 C
6. a. The graphs are isomorphic. D
b. The graphs are isomorphic.
d.
c. The graphs are not isomorphic. B
d. The graphs are isomorphic. A
7. a. Different degrees and connections
b. Different connections
8. The isomorphic pairs are graphs 2 and 4, and graphs 5
and 6.
D
9. a. 0 1 1 1 0
⎡ ⎤
⎢1 0 1 0 1⎥
⎢1 1 0 0 0⎥
⎢ ⎥ C
⎢1 0 0 0 1⎥
⎣0 1 0 1 0⎦
b. 0 0 1 1 2 0 E
⎡ ⎤
⎢0 0 1 0 0 1 ⎥
⎢1 1 1 0 0 0 ⎥
⎢1 0 0 0 0 1 ⎥
⎢ ⎥
⎢2 0 0 0 0 0 ⎥
⎣0 1 0 1 0 1 ⎦
554 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
11. Graph 1: Graph 2: c. B
A C
0 1 1 0 0 1 0 0 1 0
⎡ ⎤ ⎡ ⎤
⎢1 0 1 0⎥ ⎢1 0 0 1 0 0⎥
⎢1 1 0 1⎥ ⎢0 0 0 0 1 1⎥
⎢ ⎥
⎣0 0 1 0⎦ ⎢0 1 0 0 0 1⎥ D
⎢ ⎥ I
⎢1 0 1 0 0 0⎥
⎣0 0 1 1 0 0⎦
E
H
Graph 3: Graph 4:
G F
0 1 0 0 1 0 2 1 0 0 0
⎡ ⎤ ⎡ ⎤ 14. L
⎢1 0 1 0 0⎥ ⎢2 0 0 0 1 0⎥
K
⎢0 1 0 1 0⎥ ⎢1 0 0 1 0 0⎥
⎢ ⎥ ⎢0 J
⎢0 0 1 0 1⎥ 0 1 0 0 0⎥
⎢ ⎥
⎣1 0 0 1 0⎦ ⎢0 1 0 0 0 1⎥
⎣0 0 0 0 1 0⎦
I
G B
Graph 5:
H
0 1 1 1 1 1
⎡ ⎤
⎢1 0 1 1 1 1⎥ F D A
⎢1 1 0 1 1 1⎥ C
⎢1 1 1 0 1 1⎥
⎢ ⎥
⎢1 1 1 1 0 1⎥
E
⎣1 1 1 1 1 0⎦
15.
Simple Connected
12. a. 0 0 1 b. 2 1 0 0 Graph 1 Yes Yes
⎡ ⎤
[0 2 2] ⎢1 0 1 2⎥ Graph 2 Yes Yes
1 2 0 ⎢0 1 0 1⎥
⎢ ⎥ Graph 3 Yes Yes
⎣0 2 1 0⎦
c. 0 0 1 1 0 d. 0 0 0 1 0 Graph 4 No Yes
⎡ ⎤ ⎡ ⎤
⎢0 0 0 0 0⎥ ⎢0 0 0 1 0⎥ Graph 5 No Yes
⎢1 0 0 0 2⎥ ⎢0 0 0 0 1⎥
⎢ ⎥ ⎢ ⎥ 16. a.
⎢1 0 0 0 1⎥ ⎢1 1 0 0 0⎥ C
⎣0 0 2 1 0⎦ ⎣0 0 1 0 1⎦ D
13. Answers will vary. Possible answers are shown.
a. B
B
A
E
C
A
F b. Total number of games played
17. a. Y H M
D
E
b. B
A
G C C
S P
b. Huairou and Shunyi
F
c. Simple connected graph
D
E
BAN MAN
G
PP E
JAK
KL C
D
SIN B
F
A
C
C E D
b. A
E D B
b. D
F
A C
C
D
E
B 9. a. A
B
2. a. All of them b. All of them
3. a. C
G F
E
D B D
A
556 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
b. A C 14. a. V3
R1 R8
R6
R2 C1
R3 R4 R7
B D
V2
V5 V6 R9
b. No
E 15. a. Michelle
10. a. i. 3 ii. 2 Adam
b. i. 1 ii. 4
11. a.
Total edges Total degrees
Sophie
Graph 1 3 6
Ethan
Graph 2 5 10 Liam Emma
Graph 3 8 16 Chloe
Graph 4 14 28
Graph 2 4 2
Graph 3 4 4
Sophie
Graph 4 6 6 Ethan
Liam Emma
b. No clear pattern is evident.
Chloe
13.
A
E d. 4
A
B
9.3 Exam questions
D D Note: Mark allocations are available with the fully worked
C solutions online.
1. D
B 2. A
F 3. C
C
Tetrahedron Octahedron 9.4 Connected graphs
B
9.4 Exercise
A
C 1. Cycle: ABECA (others exist)
Circuit: BECDB (others exist)
D
2. Path: ABGFHDC (others exist)
Cycle: DCGFHD (others exist)
Circuit: AEBGFHDCA (others exist)
3. a. Walk, trail and circuit
E G
b. Walk, trail and path
H
c. Walk, trail, path, cycle and circuit
d. Walk and trail
F 4. a. MCHIJGFAED b. AEDBLKMC
c. MDEAFGJIHCM d. FMCHIJGF
Cube
D D D
E E E
Other possibilities exist.
School 4. ABGEDCA or ACDEGBA (length 66)
558 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
5. a. i. A 7. A B M C D
100 100
B 100 141
141 100
C F E
G 100 H
100
141 141 141
I K
D F J
141
E
L
ii. ADCBFCE or ADCFBCE
8. a. C
b. i.
A G 25
B
B D
C 20
H E
A 28 26
F 14
D
19
F
E G
ii. AHGACBFCDE or similar b. A
c. i. G
A
7
J
B C 10
C B D
K 8
H
H
F 10
D
I 7
E
E 9 G
ii. KDEKHJKCFIAGBF or similar 9 F
d. i. G 9. Step 1 Step 2
A
J F F G
B 1 1
C E 3
K 1 1 J
H 2
L D D
M
D F
Step 3 Step 4
I 3 F G 3 F G
C C
E 1 1
E 3 E 3
ii. EDMEIFMLBGACKHJKA or similar 2 J 2 J
1 1
I 2 I 2
6. a. D 2 D
I J
1 1 A 2 B
3
C 2 D
3 3 H
H B
2 E K 10. a. i. B
3 3 2
A F
E
2 2 11
22
G L 16
A C
b. 24 G
12 37
F
11
D
ii. 109
G 50 F
13 13. a.ADEG
10
b. BHG
c. EGFCDABHE
12
C D 14. a. Bridgewater Shepparton
Bendigo 122
17 60 40 38 82
13 Maryborough 48 Castlemaine 117
89 Seymour
Ballarat 57 99
Ararat Bacchus Marsh
98
16 38 Sunbury
E F G 86 58
103
ii. 81
d. i. Colac 77 Geelong
A B 6 C
b. 723 km
c. Bridgewater Shepparton
5 3 Bendigo
40
38 82
Maryborough 48 Castlemaine
D Seymour
F 89
4 E 6 99
Ararat Ballarat 57 Bacchus Marsh
98
5 38 Sunbury
58
Colac 77 Geelong
G 8 H
d. 859 km
ii. 37 15. a. F
e. i. C
A 3 B
360 1400
435 1590
B
E H
6 G 730 220
375
D 2600 I
C D E 1090
960
5 2200
3 2
A
F 3 G b. No; C and E are both only reachable from B.
ii.22 c. i. 12 025
11. a. FDCGBAE (other solutions exist) ii. 12 025
b. FDCBAEG (other solutions exist)
12. a. Longest: IFEDCBAHG (or similar variation of the same
values)
Shortest: IAHGFEDCB (or similar variation of the same
values)
560 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
d. F iii. D
C
360 1400
B 435 C
E H
G 730 B
220 F
375 E G
D I
960
2200
A
iv. D
A
G
9.5 Exam questions
B E
Note: Mark allocations are available with the fully worked
solutions online.
1. B C
2. D
3. B
A
9.6 Review F
12. a. 1 1 0 1
9.6 Exercise ⎡ ⎤
⎢1 0 3 0⎥
Multiple choice ⎢0 3 1 1⎥
⎢ ⎥
1. C 2. D 3. C 4. B ⎣1 0 1 0⎦
5. E 6. A 7. E 8. A b. 0 1 2 1 1
9. A 10. E ⎡ ⎤
⎢1 0 2 0 1⎥
Short answer ⎢2 2 0 2 3⎥
⎢ ⎥
11. a. i. Planar ii. Planar ⎢1 0 2 2 2⎥
iii. Planar iv. Planar ⎣1 1 3 2 0⎦
b. i. c. 0 2 1 3 1 2
⎡ ⎤
C
⎢2 0 3 1 1 0⎥
⎢1 3 0 2 3 1⎥
D ⎢3 1 2 2 2 1⎥
⎢ ⎥
B ⎢1 1 3 2 3 1⎥
F ⎣2 0 1 1 1 0⎦
d. 0 2 1 3 0 1 0
E ⎡ ⎤
⎢2 0 2 1 2 1 0⎥
⎢1 2 0 1 1 0 1⎥
A ⎢ ⎥
G ⎢3 1 1 0 0 2 1⎥
⎢0 2 1 0 0 0 3⎥
ii. C D ⎢ ⎥
⎢1 1 0 2 0 0 2⎥
⎣0 0 1 1 3 2 0⎦
G
13. a. Simple, planar b. Simple, planar
c. Simple, planar d. Simple, planar
B e. Simple f. Simple, planar
g. Simple, planar h. Simple, planar
E
14. Graphs a and d are isomorphic.
15. a. i. 3
B
A F
D
ii. ABDBCADC
*17. a. Darwin
3429
Brisbane
4301
4289 982
4049
4003 2055
3051 1671 1246
3189
3972
Sydney
Perth 1415
3741
309
2716
Adelaide 1198 Canberra 873
3456 658
732
Melbourne
*17. d. Darwin
Brisbane
982
3051
Sydney
Perth
2716
Canberra
Adelaide 873
658
732
Melbourne
562 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition
18. a. i. 3805 m b. 0 2 1 1 0 1
⎡ ⎤
ii. See the figure at the foot of the page.* ⎢2 0 1 1 0 0⎥
b. HEDA, 1860 m
⎢1 1 0 2 1 0⎥
⎢1 1 2 0 1 0⎥
c. 4905 m, DFGCABEH ⎢ ⎥
⎢0 0 1 1 0 1⎥
d. DEHFGCABD, 5260 m
⎣1 0 0 0 1 0⎦
19. a. F c. No, as there are more than two vertices of odd degree.
10 d. AFEDCBA(39)
E
20. a. See the figure at the foot of the page.*
7 b. Hobart–Bruny–Robbins (780 km)
4 c. Hobart–Bruny–Robbins–King–Devonport–Flinders–
Maria (2075 km)
9 D 5
A d. King–Devonport–Flinders–Maria–Hobart–Bruny–
9 Robbins–King
8
14 3
13
6
C
9
B
*18. a. ii. B E
325 815
565
H
A 365 D
350
C
805
G 580 F
*20. a. Flinders Island
King Island 465
405
120 395 330
Robbins
Island 265
Devonport 595
450
625
715
Hobart 145
Maria
65 Island
130
Bruny Island
1.8
M
T
S
1.5
N
1.0 1.2
0.7 0.9
U
0.8
R 0.8
0.6 V
O
1.2 1.2
0.4 1.4
Q 0.8 P
3. a. The office
b. i. Hamiltonian cycle
ii. office
library
science
laboratories computer
rooms
mathematics
classrooms gymnasium
4. A
5. E
564 Jacaranda Maths Quest 11 General Mathematics VCE Units 1 & 2 Third Edition