Explaining computational complexity theory - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T06:46:19Zhttp://stackoverflow.com/feeds/question/308213http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/308213/explaining-computational-complexity-theory3Explaining computational complexity theoryMario Ortegón2008-11-21T08:46:45Z2009-04-15T17:12:11Z
<p>It is said that true mastery of a subject is achieved when you can explain it simply. Unfortunately as an Electronics Engineer I lack some of the more formal aspects of computer science.</p>
<p>Taking into consideration that there is some background in math, how would you explain computational complexity theory to the naïve? Where to start to get into this very important topic of CS? I understand some of the concepts involved, but I lack a general overview that allows me to drop into the details.</p>
<p>Edit: Big O notation is clear to me. What I am looking more is an explanation of what is this P = NP question. What is a problem P? What is NP? what is a NP-Hard?</p>
<p>Edit 2: Some really great answers! now a lot of things make more sense. The problem is that sometimes wikipedia is written as if the reader already understood all concepts involved. Now with this quick overview many of these articles make a lot more sense </p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/308217#3082170Answer by Gilles for Explaining computational complexity theoryGilles2008-11-21T08:49:28Z2008-11-21T08:49:28Z<p>The simplest answer <a href="http://en.wikipedia.org/wiki/Computational_complexity_theory" rel="nofollow">wikipedia</a></p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/308263#3082635Answer by jonrock for Explaining computational complexity theoryjonrock2008-11-21T09:30:03Z2008-11-21T09:41:51Z<p>Unfortunately, the best two books I am aware of (<a href="http://rads.stackoverflow.com/amzn/click/0716710455" rel="nofollow">Garey and Johnson</a> and <a href="http://rads.stackoverflow.com/amzn/click/0321462254" rel="nofollow">Hopcroft and Ullman</a>) both start at the level of graduate proof-oriented mathematics. This is almost certainly necessary, as the whole issue is very easy to misunderstand or mischaracterize. Jeff <a href="http://www.codinghorror.com/blog/archives/001187.html" rel="nofollow">nearly got his ears chewed off</a> when he attempted to approach the matter in too folksy/jokey a tone.</p>
<p>Perhaps the best way is to simply do a lot of hands-on work with big-O notation <a href="http://rads.stackoverflow.com/amzn/click/0072970545" rel="nofollow">using lots of examples and exercises</a>. See also <a href="http://stackoverflow.com/questions/111426/did-you-apply-computational-complexity-theory-in-real-life">this answer</a>. Note, however, that this is not quite the same thing: individual algorithms can be described by asymptotes, but saying that a <em>problem</em> is of a certain complexity is a statement about <em>every possible algorithm</em> for it. This is why the proofs are so complicated!</p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/308407#3084071Answer by flolo for Explaining computational complexity theoryflolo2008-11-21T10:49:26Z2008-11-21T10:49:26Z<p>I remember "Computational Complexity" from Papadimitriou (I hope I spelled the name right) as a good book</p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/308559#3085591Answer by mfx for Explaining computational complexity theorymfx2008-11-21T11:58:31Z2008-11-21T11:58:31Z<p>very much simplified: A problem is NP-hard if the only way to solve it is by enumerating all possible answers and checking each one.</p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/309236#3092364Answer by ShreevatsaR for Explaining computational complexity theoryShreevatsaR2008-11-21T16:04:11Z2008-11-21T16:18:58Z<p><a href="http://www-math.mit.edu/~sipser/" rel="nofollow">Michael Sipser</a>'s <a href="http://rads.stackoverflow.com/amzn/click/053494728X" rel="nofollow">Introduction to the Theory of Computation</a> is a great book, and is very readable. Another <strong>great</strong> resource is Scott Aaronson's <a href="http://stellar.mit.edu/S/course/6/sp08/6.080/index.html" rel="nofollow">Great Ideas in Theoretical Computer Science</a> course. </p>
<p>The formalism that is used is to look at decision problems (problems with a Yes/No answer, e.g. "does this graph have a Hamiltonian cycle") as "languages" -- sets of strings -- inputs for which the answer is Yes. There is a formal notion of what a "computer" is (Turing machine), and a problem is in P if there is a polynomial time algorithm for deciding that problem (given an input string, say Yes or No) on a Turing machine. </p>
<p>A problem is in NP if it is <em>checkable</em> in polynomial time, i.e. if, for inputs where the answer is Yes, there is a (polynomial-size) certificate given which you can check that the answer is Yes in polynomial time. [E.g. given a Hamiltonian cycle as certificate, you can obviously check that it is one.] </p>
<p>It doesn't say anything about how to <em>find</em> that certificate. Obviously, you can try "all possible certificates" but that can take exponential time; it is not clear whether you will always <em>have</em> to take more than polynomial time to decide Yes or No; this is the P vs NP question. </p>
<p>A problem is NP-hard if being able to solve that problem means being able to solve all problems in NP.</p>
<p>Also see this question:
<a href="http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem">http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem</a></p>
<p>But really, all these are probably only vague to you; it is worth taking the time to read e.g. Sipser's book. It is a beautiful theory.</p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/309320#3093200Answer by benjismith for Explaining computational complexity theorybenjismith2008-11-21T16:21:33Z2008-11-21T16:21:33Z<p>My simplified answer would be: "Computational complexity is the analysis of how much harder a problem becomes when you add more elements."</p>
<p>In that sentence, the word "harder" is deliberately vague because it could refer either to processing time or to memory usage.</p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/309400#3094000Answer by James McMahon for Explaining computational complexity theoryJames McMahon2008-11-21T16:39:33Z2008-11-21T16:39:33Z<p>In computer science it is not enough to be able to solve a problem. It has to be solvable in a reasonable amount of time. So while in pure mathematics you come up with an equation, in CS you have to refine that equation so you can solve a problem in reasonable time.</p>
<p>That is the simplest way I can think to put it, that may be too simple for your purposes.</p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/309507#30950715Answer by Charlie Martin for Explaining computational complexity theoryCharlie Martin2008-11-21T17:13:23Z2008-11-21T17:13:23Z<p>Hoooo, doctoral comp flashback. Okay, here goes.</p>
<p>We start with the idea of a decision problem, a problem for which an algorithm can always answer "yes" or "no." We also need the idea of two models of computer (Turing machine, really): deterministic and non-deterministic. A deterministic computer is the regular computer we always thinking of; a non-deterministic computer is one that is just like we're used to except that is has unlimited parallelism, so that any time you come to a branch, you spawn a new "process" and examine both sides. Like Yogi Berra said, when you come to a fork in the road, you should take it.</p>
<p>A decision problem is in P if there is a known polynomial-time algorithm to get that answer. A decision problem is in NP if there is a known polynomial-time algorithm for a non-deterministic machine to get the answer.</p>
<p>Problems known to be in P are trivially in NP --- the nondeterministic machine just never troubles itself to fork another process, and acts just like a deterministic one. There are problems that are known to be neither in P nor NP; a simple example is to enumerate all the bit vectors of length n. No matter what, that takes 2<sup>n</sup> steps. </p>
<p>(Strictly, a decision problem is in NP if a nodeterministic machine can arrive at an answer in poly-time, and a deterministic machine can <em>verify</em> that the solution is correct in poly time.)</p>
<p>But there are some problems which are known to be in NP for which no poly-time deterministic algorithm is known; in other words, we know they're in NP, but don't know if they're in P. The traditional example is the decision-problem version of the Traveling Salesman Problem (decision-TSP): given the cities and distances, is there a route that covers all the cities, returning to the starting point, in less than <em>x</em> distance? It's easy in a nondeterministic machine, because every time the nondeterministic traveling salesman comes to a fork in the road, he takes it: his clones head on to the next city they haven't visited, and at the end they compare notes and see if any of the clones took less than <em>x</em> distance. </p>
<p>(Then, the exponentially many clones get to fight it out for which ones must be killed.)</p>
<p>It's not known whether decision-TSP is in P: there's no known poly-time solution, but there's no proof such a solution doesn't exist.</p>
<p>Now, one more concept: given decision problems P and Q, if an algorithm can transform a solution for P into a solution for Q in polynomial time, it's said that Q is <em>poly-time reducible</em> (or just reducible) to P.</p>
<p>A problem is NP-complete if you can prove that (1) it's in NP, and (2) show that it's poly-time reducible to a problem already known to be NP-complete. (The hard part of that was provie the <em>first</em> example of an NP-complete problem: that was done by Steve Cook in <a href="http://en.wikipedia.org/wiki/Cook%27s_theorem" rel="nofollow">Cook's Theorem</a>.)</p>
<p>So really, what it says is that if anyone ever finds a poly-time solution to one NP-complete problem, they've automatically got one for <em>all</em> the NP-complete problems; that will also mean that P=NP.</p>
<p>A problem is NP-hard if and only if it's "at least as" hard as an NP-complete problem. The more conventional Traveling Salesman Problem of finding the shortest route is NP-hard, not strictly NP-complete.</p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/309532#3095320Answer by John the Statistician for Explaining computational complexity theoryJohn the Statistician2008-11-21T17:19:48Z2008-11-21T17:19:48Z<p>Depending on how long you have, maybe it would be best to start at DFA, NDFA, and then show that they are equivalent. Then they understand ND vs. D, and will understand regular expressions a lot better as a nice side effect.</p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/309573#3095731Answer by JB King for Explaining computational complexity theoryJB King2008-11-21T17:34:21Z2008-11-21T17:34:21Z<p>Here are a few links on the subject:</p>
<ul>
<li><a href="http://www.claymath.org/millennium/P_vs_NP/" rel="nofollow">Clay Mathematics statement of P vp NP problem</a> </li>
<li><a href="http://www.win.tue.nl/~gwoegi/P-versus-NP.htm" rel="nofollow">P vs NP Page</a> </li>
<li><a href="http://www.math.ias.edu/~avi/PUBLICATIONS/MYPAPERS/W06/W06.pdf" rel="nofollow">P, NP, and Mathematics</a></li>
</ul>
<p>In you are familiar with the idea of set cardinality, that is the number of elements in a set, then one could view the question like P representing the cardinality of Integer numbers while NP is a mystery: Is it the same or is it larger like the cardinality of all Real numbers?</p>
http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/752757#7527571Answer by Raheem Rufai for Explaining computational complexity theoryRaheem Rufai2009-04-15T17:12:11Z2009-04-15T17:12:11Z<p>This is a comment on Charlie's post.</p>
<blockquote>
<p>A problem is NP-complete if you can prove that (1) it's in NP, and
(2) show that it's poly-time reducible to a problem already known to
be NP-complete.</p>
</blockquote>
<p>There is a subtle error with the second condition. Actually, what you need to prove is that a known NP-complete problem (say Y) is polynomial-time reducible to this problem (let's call it problem X). </p>
<p>The reasoning behind this manner of proof is that if you could reduce an NP-Complete problem to this problem and somehow manage to solve this problem in poly-time, then you've also succeeded in finding a poly-time solution to an NP-complete problem, which would be a remarkable (if not impossible thing) as you'll have succeeded to resolve the long-standing P = NP problem. </p>
<p>Another way to look at this proof is consider it as using the the contra-positive proof technique, which essentially states that if Y --> X, then ~X --> ~Y. In other words, not being able to solve Y in polynomial time isn't possible means not being to solve X in poly-time either. On the other hand, if you could solve X in poly-time, then you could solve Y in poly-time as well. Further, you could solve all problems that reduce to Y in poly-time as well by transitivity.</p>
<p>I hope my explanation above is clear enough. A good source is Chap 8 of Algorithm Design by Kleinberg and Tardos or Chap 34 of Cormen et al.</p>
<p>Regards,</p>
<p>Raheem</p>