3

Is Max 3-SAT a W[1] hard problem, parmeterized by some parmeterize? I can't find the relevant literature.

I accept any parameterization.

zhukui bai
  • 49
  • 7

1 Answers1

1

The W hierarchy consists of classes of decision problems. The decision versions of MAX-SAT problems are just slightly disguised SAT problems. For example, to transform the decision problem "is there a variable assignment that satisfies k clauses?", add a unique variable to each CNF clause, then add a constraint that demands that at least k of the unique variables be set false. (All this can be done in polynomial time.) If the resulting SAT instance is satisfiable, the answer to the MAX-SAT problem is yes, otherwise the answer is no.

Since SAT Karp-reduces to CLIQUE and CLIQUE is W[1]-hard, SAT must be as well, and therefore so is the decision version of MAX-SAT.

Kyle Jones
  • 8,091
  • 2
  • 29
  • 51
  • SAT Karp-reduces to CLIQUE cannot show that SAT must be W[1] hard. If clique can reduce to SAT, it is right. Is my understanding correct? – zhukui bai Nov 07 '21 at 03:28
  • So MAX SAT is W-hard for what parameter? Also, as an example, vertex cover reduces to clique, yet VC is not W-hard (for the natural parameter). – Juho Nov 07 '21 at 08:14