Questions: Propositional Resolution

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

You want to use propositional resolution to prove that formula φ follows from premises Γ. What is the correct procedure?

AConvert φ to CNF and resolve its clauses until you derive each clause of Γ
BAdd ¬φ to Γ, convert everything to CNF, and resolve until the empty clause ⊥ is derived
CConvert both φ and Γ to CNF separately and check whether every clause of φ appears in Γ
DResolve the clauses of Γ together until either φ or ¬φ is derived
Question 2 Multiple Choice

Applying resolution to clauses (A ∨ B ∨ ¬C) and (C ∨ D), where C is the resolved literal, produces which resolvent?

A(A ∨ B ∨ D)
B(A ∨ B ∨ ¬C ∨ C ∨ D)
C(A ∨ B)
D(¬C ∨ C)
Question 3 True / False

If propositional resolution derives the empty clause from a set of clauses, this proves that the clause set is satisfiable.

TTrue
FFalse
Question 4 True / False

Resolution is refutation-complete: if a set of propositional clauses is unsatisfiable, there always exists a finite sequence of resolution steps that derives the empty clause.

TTrue
FFalse
Question 5 Short Answer

Why do automated theorem provers using resolution negate the goal formula before resolving, rather than trying to derive the goal directly from the premises?

Think about your answer, then reveal below.