I've just read about possibility to solve set partition to half in polynomial time. But I could not find algorithm to do it.

I have two questions:

  1. Where I can get that algorithm?
  2. How is it possible that NP problem can be solved in polynomial time?
link|improve this question

53% accept rate
Please state the precise problem you wish to solve. – Irit Katriel Jan 8 at 17:10
I would like to know polynomial algorithm to solve set partition, which is NP problem. – John Jan 8 at 17:12
1  
Is this homework? – Alex Jan 8 at 17:14
The partition problem is not solvable in polynomial time. It's solvable in pseudo-polynomial time, and there are polynomial-time heuristic algorithms that solve "many instances" of the problem (but not all of them). – harold Jan 8 at 17:14
@Alex no ti is not homework – John Jan 8 at 17:21
show 3 more comments
feedback

2 Answers

You should mention where exactly did you read that. It's possible that you stumbled upon a polynomial approximation algorithm, or a pseudo-polynomial exact algorithm (a dynamic programming pseudo-polynomial solution exists), but definitely not a polynomial, exact algorithm - since the partition problem is an NP problem, and no polynomial algorithm can solve it, unless P=NP.

link|improve this answer
If you could just quickly answer "does P=NP" I'll give you an up vote. – Alex Jan 8 at 17:27
5  
I have discovered a truly marvelous proof of this, which this margin is too narrow to contain – Óscar López Jan 8 at 17:29
+1000 for Fermat. – Alex Jan 8 at 17:30
Seriously. Even though no formal proof exists for P=NP or P!=NP, the general consensus seems to be that P!=NP. – Óscar López Jan 8 at 17:31
feedback

You cannot, it's NP-complete and thus far there is no way to solve an NP-complete problem in P time.

link|improve this answer
Well... We think that there isn't a polynomial time solution. If P = NP, then there is a polynomial-time algorithm! – templatetypedef Jan 8 at 19:35
you should write NP-complete instead of NP. – sdcvvc Jan 8 at 23:40
@templatetypedef - hence "thus far" – Mimisbrunnr Jan 10 at 4:06
feedback

Your Answer

 
or
required, but never shown

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