Worked solution
Start at and repeatedly go to the nearest unvisited vertex
At each stage the algorithm takes the shortest arc to a vertex that has not yet been visited, and finally returns to .
Add the lengths of the arcs used, including the return to
The tour uses the arcs AB,\;BE,\;ED,\;DC,\;CA.
State the upper bound
The tour A\to B\to E\to D\to C\to A has length , so the optimal tour is no longer than .