What steps do I need to follow to convert the next statements into CNF? Wich are the resulting clauses?
- $H \leftrightarrow C \vee D$
- $R \rightarrow \neg D$
- $R \wedge H$
- $H \leftrightarrow C$
Thank you.
What steps do I need to follow to convert the next statements into CNF? Wich are the resulting clauses?
Thank you.
Copyright © 2021 JogjaFile Inc.
First, be clear what CNF: Conjunctive Normal Form means, and understand why the examples listed in the linked Wikipedia entry are in CNF. Then you'll see that your third expression:
$(3)\; R \land H\,$ is already in conjunctive normal form. Note that $R\lor H$ is also in conjunctive normal form.
One obvious mnemonic for remembering what CNF allows is to remember $C$ is for conjunction, and think of $N$ as "negation."
You want to end with an expression of the form $P$ or of the form $P \land Q$ or of the form $P \land Q \land R \land \cdots$ depending on the number of variables and clauses needed. But note that
I'll leave the first expression to you, in hopes that you can learn from the following examples:
$(2)\quad R \rightarrow \lnot D\equiv (\lnot R \lor \lnot D)$
$(4)\quad H \leftrightarrow C \equiv (H\rightarrow C) \land (C\rightarrow H)\equiv (\lnot H \lor C) \land (\lnot C \lor H)$
The right-most propositions in $(2)$ and $(4)$ are now in conjunctive normal form.