The p-np tag has no wiki summary.
69
votes
7answers
6k views
What's “P=NP?”, and why is it such a famous question?
The question of whether P=NP is perhaps the most famous in all of Computer Science. What does it mean? And why is it so interesting?
Oh, and for extra credit, please post a proof of the statement's ...
56
votes
8answers
10k views
Explain the proof by Vinay Deolalikar that P != NP
Recently there has been a paper floating around by Vinay Deolalikar at HP Labs which claims to have proved that P != NP. Could someone explain how this proof works for us less mathematically inclined ...
31
votes
5answers
6k views
NP vs NP-Complete vs NP-Hard — what does it all mean?
What are the differences between NP vs NP-Complete vs NP-Hard ?
I am aware of many resources all over the web. I d like to read your explanations, and the reason is they might be different then ...
13
votes
15answers
2k views
What would a P=NP proof be like, hypothetically?
Would it be an polynomial time algorithm to a specific NP-complete problem, or just abstract reasonings that demonstrate solutions to NP-complete problems exist?
It seems that the a specific algoithm ...
8
votes
1answer
225 views
P=NP?-Problem: What are the most promising methods?
I know that P=NP has not been solved up to now, but can anybody tell me something about the following: What are currently the most promising mathematical / computer scientific methods that could be ...
6
votes
3answers
199 views
“Finding all the code in a given binary is equivalent to the Halting problem.” Really?
Was just reading the highly voted question regarding Emulators and the statement
It's been proven that finding all the
code in a given binary is equivalent
to the Halting problem.
Really ...
4
votes
4answers
501 views
NP-hard problems that are not NP-complete are harder?
From my understanding, all NP-complete problems are NP-hard but some NP-hard problems are known not to be NP-complete, and NP-hard problems are at least as hard as NP-complete problems.
Is that mean ...
4
votes
5answers
420 views
Why are NP problems called that way (and NP-hard and NP-complete)?
Really.. I'm having the last test for graduation this Tuesday, and that's one of the things I just never could understand.
I realize that a solution for NP problem can be verfied in polynomial time. ...
4
votes
7answers
432 views
What is missing for this P != NP proof?
I tried to recover a password. When thinking of this I recognized that the problem "password recovery" is a very nice example of a NP problem. If you know the password it's very easy to verify it in ...
2
votes
2answers
223 views
What are NP problems?
I read the article on wikipedia but could not understand what exactly are NP problems. Can anyone tell me about them and also what is relation of them with P Problems?
2
votes
4answers
502 views
Best book regarding NP-hard, NP-complete, P =? NP
What is the best book for a student learning about concepts such as NP-hard, NP-complete and P=?NP?
I've already got the CLR but it doesn't really cover these particular topics as thoroughly.
1
vote
0answers
149 views
Subset sum, Pseudo-polynomial time dynamic programming solution? [closed]
I found the P vs NP problem some time ago and I have recently worked on the subset sum problem. I have read Wikipedia article on the Subset Sum problem as well as the question Subset Sum Algorithm
I ...