I am really confused why, 2-CNF SAT is in P, while 3-CNF SAT is in NPC. I Read CLRS, and i understand how they proof, 3-CNF SAT is in NPC, can't i use the same reducablity from SAT to 2-CNF-SAT to proof 2-CNF-SAT is in NPC. i don't undestand why 2-CNF SAT is in P
feedback
|
Because there is a polynomial algorithm to solve it. A rough sketch of a proof: Note that any clause in 2-CNF is in the form Now, you can take a variable, one by one, and search if it transitively forces itself to be its negative (A => B => C => ... => non A) and vice versa (non A => ... => A). If the first is true, A has to be false; if the second, A is true. If both, the formula is unsatisfiable. If you don't find any variable that makes the formula unsatisfiable, it is satisfiable. Note that this "brutal" algorithm is not the actual one using strongly connected components of a graph, which I recommend you to read on. Yet, it is polynomial (the search for one variable is clearly O(N^2), since you force one variable at a time considering O(N) clauses and you consider O(N) variables, which means the algorithm is polynomial). Note that the fact that we have at most two literals in a clause is crucial. If the clauses were | |||||
feedback
|
|
The canonical reduction from CNF SAT to 3-CNF SAT is to take a clause like lit_1 OR lit_2 OR ... OR lit_n and replace it with two clauses lit_1 OR lit_2 OR ... OR lit_{floor(n/2)} OR var, lit_{floor(n/2) + 1} OR ... OR lit_n OR NOT var. If you try to crack a clause with three literals this way, you'll get another clause with three literals, so the same proof won't work for 2-CNF SAT (and probably for good reason). | |||
|
feedback
|