1

any expert could help me why this sentence is True?

if L ∈ NP and L ≤p 3−SAT (i.e: reduce L to 3-SAT in poly time) then L is NP-Complete.

tsnorri
  • 1,966
  • 5
  • 21
  • 29

1 Answers1

3

This statement is false. Since 3SAT is NP-complete, every problem in NP polynomial-time reduces to 3SAT, so if you choose any language in NP, then it will polynomial-time reduce to 3SAT. In particular, if you choose the empty language ∅, which is known not to be NP-complete, then ∅ ∈ NP and ∅ reduces toe 3SAT, but ∅ isn't NP-complete.

Hope this helps!

templatetypedef
  • 362,284
  • 104
  • 897
  • 1,065
  • Could you take a look at my question? http://stackoverflow.com/questions/29706726/reduction-to-clique-prob – Mary Star Apr 18 '15 at 10:53