\usepackagepifont You can't use 'macro parameter character #' in math mode You can't use 'macro parameter character #' in math mode

DNF — The Disjunctive Normal Form

The disjunctive normal form is the dual of CNF. We define a cube to be a conjunction (l1l2...ln) of literals. A cube is contradictory if it contains a literal and its negation. A formula is in disjunctive normal form (DNF) if it is a disjunction of cubes.

Example

The formula (a¬b)(¬a¬bc) is in DNF.

Checking whether a DNF formula is satisfiable is easy: as the formula is a disjunction of cubes, each non-contradictory cube corresponds to one or more satisfying truth assignments.

Example

The DNF formula (a¬b)(¬a¬bc) over the three variables {a,b,c} has three satisfying truth assignments:

  • ​ The cube (a¬b) corresponds to {aT,bF,cF} and {aT,bF,cT}.

  • ​ The cube (¬a¬bc) corresponds to {aF,bF,cT}.

However, this fact does not make SAT solving trivial: translating a formula to DNF can require exponential time and space in the worst case.

Example

Consider the parity formula x1x2xn. Its minimal DNF consists of 2n1 cubes of length n. For instance, when n=3, the DNF of x1x2x3 is

(¬x1¬x2x3)(¬x1x2¬x3)(x1¬x2¬x3)(x1x2x3)

As with CNF (recall the section CNF Translations), a formula can be translated to DNF by local rewriting rules:

  • ​ removing other binary operands but disjunction and conjunction,

  • ​ pushing negations next to variables, and

  • ​ pushing disjunctions outside of conjunctions with the rule γ(αβ)(γα)(γβ)

For small formulas, the DNF can also be directly read from the truth table by observing that a cube (l1...lk) “includes” all the rows in which l1,...,lk are all true.

Example

Consider the formula (ab)c with the truth table below.

abc(ab)(ab)cFFFFFFFTFTFTFFFFTTFTTFFFFTFTFTTTFTTTTTTF

Now the cube (¬a¬bc) includes the second row in which a and b are false and c is true. Including all the rows, and only those, in which (ab)c is T by adding cubes, we get the DNF formula

(¬a¬bc)(¬abc)(a¬bc)(ab¬c)