17M.3.AHL.TZ0.HDM_2
The weights of the edges in the complete graph are given in the following table.

Starting at A , use the nearest neighbour algorithm to find an upper bound for the travelling salesman problem for .
By first deleting vertex A , use the deleted vertex algorithm together with Kruskal’s algorithm to find a lower bound for the travelling salesman problem for .
Markscheme / solution
* This question is from an exam for a previous syllabus, and may contain minor differences in marking or structure.
the edges are traversed in the following order
AB A1
BC
CF A1
FE
ED A1
DA A1
A1
[5 marks]
having deleted A, the order in which the edges are added is
BC A1
CF A1
CD A1
EF A1
Note: Accept indication of the correct order on a diagram.
to find the lower bound, we now reconnect A using the two edges with the lowest weights, that is AB and AF (M1)(A1)
A1
Note: Award (M1)(A1)A1 for obtained either from an incorrect order of correct edges or where order is not indicated.
[7 marks]