- IB
- Question Type 6: Applying algorithm to find the shortest route covering every edge once
An urban courier must travel along every street in a network with intersections and . The street lengths are , , , , and .
Starting and ending at , find the minimal distance required to traverse each street at least once.
[4]In the graph with vertices and edges , determine the minimal total weight of a closed walk covering every edge at least once.
[5]This problem involves the Route Inspection Problem (also known as the Chinese Postman Problem), which requires finding the shortest path that traverses every edge of a graph at least once and returns to the starting node.
A maintenance crew must traverse every street in a network with a central hub and peripheral nodes . The street lengths are , , , , and the ring streets are , , , .

Starting and ending at , find the minimal distance required to cover each street at least once.
[6]On a map, five villages and are connected by roads with the following lengths: , , , , , and .
Starting and ending at , find the minimum length of a route that travels along each road at least once.
[7]Questions on Graph Theory and the Route Inspection Problem (Chinese Postman Problem) applied to a tree network.
A tree network consists of a central node connected to leaves , , and by edges , , and . Find the length of the minimal closed walk that covers every edge at least once.
[6]Graph Theory
Show that the graph with vertices and edges , , has an Eulerian circuit and state its length.
[4]In a connected weighted graph, explain why duplicating the minimal-weight perfect matching on the odd-degree vertices yields an Eulerian multigraph and hence solves the Chinese postman problem.
In a connected weighted graph, explain why duplicating the minimal-weight perfect matching on the odd-degree vertices yields an Eulerian multigraph and hence solves the Chinese postman problem.
[5]Chinese Postman Problem / Route Inspection Problem on a weighted graph.
A street network is represented by a graph with vertices and edges with the following weights:
Find the minimum length of a closed path that covers each street at least once.
[5]Consider a graph with vertices , and and weighted edges , , , , and .
Find the length of the shortest closed walk starting and ending at that covers every edge at least once.
[5]In a graph with vertices A, B, C, D, E and edge weights , , , , , , determine the minimum length of a closed walk starting and ending at A that traverses every edge at least once.
[5]