First page Back Continue Last page Summary Graphics
Example: 3-SAT
Consider a proposition in Boolean variables:
¬(ABCD) (AB)
All such can be transformed to ``Conjunctive Normal Form'' (CNF):
(¬A¬B¬C¬D) (AB)
And clauses of length > 3 eliminated:
(¬A¬BX) (¬C¬D¬X) (AB)
Result: ``3-SAT'' problem