I'm working with the book "Language, Proof and Logic" and they asked me to make an NNF of this sentence ¬(¬A ∨ ¬B ∨ C). They said that the resulting Sentence won't have any negation signs in it.
Did I make a mistake when translating it from
¬(¬Cube(a) ∨ ¬Larger(a, b) ∨ a ≠ b) to ¬(¬A ∨ ¬B ∨ C)?
and why is
(A ∨ B ∨ ¬C) wrong?
You can rewrite the formula $\neg (\neg A \vee \neg B \vee C)$ in Negation Normal Form as follows:
$\neg (\neg A \vee \neg B \vee C)$
$\neg \neg A \wedge \neg \neg B \wedge \neg C \:\:\:\:\:\:$ by DeMorgan's Law
$A \wedge B \wedge \neg C \:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:$ by double negation elimination
NOTE: if $C$ is "$a \neq b$," then $\neg C$ is "$\neg(a \neq b)$" which is logically equivalent to "$\neg \neg (a=b)"$ and "$a=b$."