Is There a Polynomial Time Solution to the Travelling Salesman Problem?

  • Thread starter Dragonfall
  • Start date
In summary: Thank you for clarifying.In summary, the traveling salesman problem is a difficult problem that is NP-hard and NP-complete. While there may not be a polynomial time algorithm to verify the minimum length path, there is one for the decision problem of whether there exists a shorter path. However, verifying the optimization problem requires showing there are no shorter paths, which can be very challenging.
  • #1
Dragonfall
1,030
4
Given an answer to the traveling salesman problem, how do you check it in polynomial time? It seems you must know the length of every route and compare it to the answer.
 
Mathematics news on Phys.org
  • #2
If you don't know the lengths of the routes Dijkstra's algorithm becomes more or less inert. If you remove the scalar values from the edges of a group, the edges become equidistant and it becomes a matter of finding a route where no vertice is visited twice.
 
  • #3
I'm not sure what you mean.
 
  • #4
According to wikipedia, the traveling salesman problem is NP-Hard. NP-Hard means it is at least has hard as problems in NP. If we knew it was in NP, it would be NP-complete.

So, in answer to your question, I don't think there is a polynomial time algorithm that verifies a given path is the minimum. However, there is one for the decision problem "Is there a tour shorter than L?", which is the decision version of TSP.
 
  • #5
Alkatran said:
I don't think there is a polynomial time algorithm that verifies a given path is the minimum. However, there is one for the decision problem "Is there a tour shorter than L?"

How does that not verify that a given tour is shortest? If you can decide in polynomial time whether there is a shorter tour than L, then if the answer turns out negative, then L is the shortest tour.
 
  • #6
Moo Of Doom said:
How does that not verify that a given tour is shortest? If you can decide in polynomial time whether there is a shorter tour than L, then if the answer turns out negative, then L is the shortest tour.

You're confusing two things: certifying an answer is correct, and actually finding the answer. The TSP decision problem is NP-complete, so there probably isn't a polynomial time algorithm to solve it, but we can verify solutions in polynomial time. The TSP problem is NP-hard, so there might not even be a polynomial time verifier.

In order for such a verifier to work you would need to show there are no shorter paths, but the certificate you've been given only mentions a single path, so you need to actually show no shorter paths exist, which happens to be just as difficult ( see http://en.wikipedia.org/wiki/Co-NP ).
 
  • #7
I'm slightly confused. What is the difference between the "TSP decision problem" and the "TSP problem"? What is a solution of the "TSP decision problem" and how do you verify it?
 
  • #8
You are given a set of nodes and distances between pairs of nodes for both the TSP problem and the TSP decision problem. The goal of the TSP problem is to find the minimum length tour. Note that the solution to the TSP problem is a Hamiltonian path. The solution is not a simple yes or no.

The TSP decision problem is a much simpler problem. You are given a length L. The goal is to determine whether there exists some tour whose length is shorter than L. This is a simple yes/no question. In particular, you are not asked for the optimal solution.
 
  • #9
Then what is the difference between the verification of the two? If you are given a hamiltonian path, you can get a length L, and if there is no tour whose length is shorter than L, it is the shortest path.
 
  • #10
Suppose we have three cities in an equilateral triangle, with nodes separated by a length L. Some TSP decision problems with this network: Is there a hamiltonian path whose length is at most 4L? at most 2L?
 
  • #11
Dragonfall said:
Then what is the difference between the verification of the two? If you are given a hamiltonian path, you can get a length L, and if there is no tour whose length is shorter than L, it is the shortest path.

It's very easy to verify one, and not so much to verify the other.

Verifying an answer to the decision problem is just summing up the path lengths you're given to make sure they're less than L, and making sure all the cities are visited exactly once.

Verifying the optimization problem requires you to show there are no shorter paths, which can be very hard.
 
  • #12
Alkatran said:
Verifying an answer to the decision problem is just summing up the path lengths you're given to make sure they're less than L, and making sure all the cities are visited exactly once.

Ah, I was under the impression an answer to the decision problem would be "yes," rather than "here is a path shorter than L." Hence the source of my confusion.
 

FAQ: Is There a Polynomial Time Solution to the Travelling Salesman Problem?

What is the Travelling Salesman Problem?

The Travelling Salesman Problem (TSP) is a well-known problem in computer science and operations research. It is a mathematical problem that involves finding the shortest possible route that visits every location exactly once and then returns to the starting point. It is named after the analogy of a salesman trying to minimize the distance travelled while visiting a set of cities.

What is the significance of the Travelling Salesman Problem?

The Travelling Salesman Problem is significant because it has many real-world applications, such as planning delivery routes, circuit board drilling, and DNA sequencing. It is also a famous example of a problem that belongs to the class of NP-hard problems, which means that it is very difficult to solve efficiently for large problem sizes.

How is the Travelling Salesman Problem solved?

There are various algorithms used to solve the Travelling Salesman Problem, including brute force, dynamic programming, and genetic algorithms. These algorithms use different techniques to find the optimal solution, such as exhaustive search, divide and conquer, and heuristics. The best solution is usually found through a combination of these techniques.

What are some of the challenges of the Travelling Salesman Problem?

The Travelling Salesman Problem is challenging because it is an NP-hard problem, meaning that the time required to find the optimal solution increases exponentially with the number of cities. This makes it difficult to solve for large problem sizes. Additionally, the problem can become even more complex when considering real-world factors such as traffic, road closures, and time constraints.

Are there any practical applications of the Travelling Salesman Problem?

Yes, the Travelling Salesman Problem has many practical applications in industries such as transportation, logistics, and manufacturing. It is used to optimize routes and schedules, minimizing costs and maximizing efficiency. It also has applications in technology, such as optimizing data storage and network routing.

Back
Top