Question about Traveling Salesperson Problem
Consider the symmetric Traveling Salesperson Problem (TSP) on a complete and weighted graph that satisfies the triangle inequality . A student has applied different approaches to find near-optimal tours and has given the following statements: I. The Closest Neighbor heuristic always produces a tour whose cost is at most twice the optimum, provided that the graph satisfies the triangle inequality. II. The Cheapest Insertion heuristic typically improves over the Closest Neighbor method but does not guarantee any fixed approximation ratio in the general case. III. The Rosenkrantz–Stearns–Lewis algorithm , based on doubling the minimum spanning tree and shortcutting, guarantees a solution within a factor of 2 of the optimum. IV. The Christofides algorithm improves on the MST-doubling approach by adding a minimum-weight perfect matching among the odd-degree vertices of the MST, achieving a 1.5 approximation bound. Which ...