How can I convert this equation to CNF?
¬((p ∨ ¬Q) ⊃ R) ⊃ (P ∧ R))
To convert a propositional formula to conjunctive normal form, perform the following two steps:
Push negations into the formula, repeatedly applying De Morgan's Law, until all negations only apply to atoms. You obtain a formula in negation normal form.
¬(p ∨ q)
to (¬p) ∧ (¬q)
¬(p ∧ q)
to (¬p) ∨ (¬q)
Repeatedly apply the distributive law where a disjunction occurs over a conjunction. Once this is not possible anymore, the formula is in CNF.
p ∨ (q ∧ r)
to (p ∨ q) ∧ (p ∨ r)
To obtain a formula in disjunctive normal form, simply apply the distribution of ∧
over ∨
in step 2.
⊂
The subset symbol (⊂
) used in the question is just an alternative notation for the logical implication/entailment, which is usually written as an arrow (⇒
).