0
7.7kviews
Explain the steps involved in conveying the propositional logic statement into CNF with a suitable example.
1 Answer
0
475views

CNF in first order logic

  1. Eliminate implications $\Leftrightarrow$, ⇒
  2. Reduce the scope of $\neg$

    » de Morgan’s laws

    ¬(w1 $\vee$ w2) $\equiv$ ¬w1 $\wedge$ ¬w2

    ¬(w1 $\wedge$ w2) $\equiv$ ¬w1 $\vee$ ¬w2

    » Elimination of repeated negations (¬ ¬w $\equiv$ w)

    » Combination of ¬ with quantifiers.

    ¬($\forall$ x) w(x) …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.