Negation normal form

In mathematical logic, a formula is in negation normal form if the negation operator (\lnot, not) is only applied to variables and the only other allowed Boolean operators are conjunction (\land, and) and disjunction (\lor, or).

Negation normal form is not a canonical form: for example, a \land (b\lor \lnot c) and (a \land b) \lor (a \land \lnot c) are equivalent, and are both in negation normal form.

In classical logic and many modal logics, every formula can be brought into this form by replacing implications and equivalences by their definitions, using De Morgan's laws to push negation inwards, and eliminating double negations. This process can be represented using the following rewrite rules (Handbook of Automated Reasoning 1, p. 204):

A \Rightarrow B \to \lnot A \lor B
\lnot (A \lor B) \to \lnot A \land \lnot B
\lnot (A \land B) \to \lnot A \lor \lnot B
\lnot \lnot A \to A
\lnot \exists x A \to \forall x \lnot A
\lnot \forall x A \to \exists x \lnot A

A formula in negation normal form can be put into the stronger conjunctive normal form or disjunctive normal form by applying distributivity.

Examples and counterexamples

The following formulae are all in negation normal form:

(A \vee B) \wedge C
(A \wedge (\lnot B \vee C) \wedge \lnot C) \vee D
A \vee \lnot B
A \wedge \lnot B

The first example is also in conjunctive normal form and the last two are in both conjunctive normal form and disjunctive normal form, but the second example is in neither.

The following formulae are not in negation normal form:

A \Rightarrow B
\lnot (A \vee B)
\lnot (A \wedge B)
\lnot (A \vee \lnot C)

They are however respectively equivalent to the following formulae in negation normal form:

\lnot A \vee B
\lnot A \wedge \lnot B
\lnot A \vee \lnot B
\lnot A \wedge C

References

External links

This article is issued from Wikipedia - version of the 3/21/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.