Questions: Literals and Clauses in Conjunctive Normal Form

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

Which of the following formulas is in conjunctive normal form (CNF)?

AP ∧ (Q ∨ (R ∧ S)) — because it uses only ∧ and ∨ with literals
B(P ∨ ¬Q) ∧ (¬R ∨ S ∨ P) — because it is a conjunction of clauses, each a disjunction of literals
C(P ∧ Q) ∨ R — because it uses both connectives
D¬(P ∨ Q) ∧ R — because it begins with a conjunction
Question 2 Multiple Choice

Tseitin's transformation converts a propositional formula to CNF in linear time, but the result is only *equisatisfiable*, not logically *equivalent*, to the original. What does this distinction mean in practice?

ATseitin CNF may give different truth values for some assignments — it is less accurate than full CNF conversion
BTseitin CNF introduces fresh auxiliary variables; it is satisfiable if and only if the original is, but their satisfying assignments differ because the Tseitin version has extra variables
CEquisatisfiable formulas can be substituted for one another in any logical proof without consequence
DTseitin CNF is only an approximation and should be avoided when correctness is critical
Question 3 True / False

The formula (A ∨ B) ∧ C is already in conjunctive normal form and requires no conversion.

TTrue
FFalse
Question 4 True / False

Converting any propositional formula to CNF using distributive laws (distributing ∨ over ∧) generally produces a result of the same size or smaller than the original formula.

TTrue
FFalse
Question 5 Short Answer

In resolution-based automated theorem proving, why must the input formula be converted to CNF before the resolution rule can be applied?

Think about your answer, then reveal below.