If I want to show that a problem is np-hard is it ok to use a existing np-hard problem multiple times? For example use Hamiltonian Cycle n times in a graph where n is the number of vertices? Or do I need to transform the graph into something that can easily be solved by an existing np-hard problem used 1 time?

link|improve this question

1  
@PeteKirkham: cstheory is for research level questions. This question will be closed, as it is off-topic for cstheory. – amit Jan 9 at 13:44
feedback

3 Answers

up vote 4 down vote accepted

You need to show the exact oposite.

It doesn't prove anything if you prove you can solve your problem with an NP-Hard problem. [You can solve every problem in NP using SAT, by Cook-Levin Theorem].

You need to show that if your problem is solvable in polynomial time - so is an NP-Hard problem. That what a reduction actually does.

For example: If I can show I can solve shortest path, using TSP - does it make shortest path NP-Hard? Of course not! It only shows TSP is at least as hard as shortest path!

link|improve this answer
I think this answered my question. I have to transform my problem(in polynomial time) so that it can solved by a known NP-Hard problem. This also means that I should only be using the known NP-Hard problem 1 time to answer my original question. – Mads Andersen Jan 9 at 13:51
@MadsAndersen: no. You need to transform the NP-Hard problem to your problem to show it is NP-Hard. or in other words: Use an algorithm for your problem to solve NP-Hard problem. If it can be done in polynomial time - your problem is NP-Hard. – amit Jan 9 at 13:53
Thanks alot - helped me! – Mads Andersen Jan 9 at 14:23
feedback

I'm not a mathematician, but surely if you can prove that the problem in question is at least as complex as an existing known-to-be-NP-hard problem, or multiples thereof, than that should be sufficient proof? Common sense would suggest that if skinning a leopard is more complex than skinning 2 cats, then its more complex than skinning one cat, and so on!

link|improve this answer
1  
This is nonesense. If I can solve shortest distance between 2 vertices using TSP, does it mean shortest path is NP-Hard? – amit Jan 9 at 13:47
I'll leave that leopard well alone then - as I said I'm not a mathematician. I did say that if you could prove it was 'at least as complex' not 'solvable with', are you sure you aren't misinterpreting me a little amit? – Simon Withington Jan 9 at 13:51
For the very least it doesn't answers the question. The question has a critical logic failure. every answer that doesn't mention it is basically wrong. – amit Jan 9 at 13:56
This common sense is called transitivity... Which might be true for a relation and false for the other one. – Lajos Arpad Jan 9 at 13:58
So even though my suggestion is not incorrect, it is incorrect due to a flaw in the question? I think our understandings of logic are quite different ;) – Simon Withington Jan 9 at 14:00
show 1 more comment
feedback

traveling from paris to london via new york doesn't prove that that path is the shortest one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.