Disjunctive normal form

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

In boolean logic, a disjunctive normal form (DNF) is a standardization (or normalization) of a logical formula which is a disjunction of conjunctive clauses; it can also be described as an OR of ANDs, a sum of products, or (in philosophical logic) a cluster concept. As a normal form, it is useful in automated theorem proving.

Definition

A logical formula is considered to be in DNF if and only if it is a disjunction of one or more conjunctions of one or more literals.[1]:153 A DNF formula is in full disjunctive normal form if each of its variables appears exactly once in every clause. As in conjunctive normal form (CNF), the only propositional operators in DNF are and, or, and not. The not operator can only be used as part of a literal, which means that it can only precede a propositional variable.

The following is a formal grammar for DNF:

  1. disjunct → (conjunctdisjunct)
  2. disjunctconjunct
  3. conjunct → (literalconjunct)
  4. conjunctliteral
  5. literal → ¬variable
  6. literalvariable

Where variable is any variable.

For example, all of the following formulas are in DNF:

  • (A \and \neg B \and \neg C) \or (\neg D \and E \and F)
  • (A \and B) \or C
  • A \and B
  • A

However, the following formulas are not in DNF:

  • \neg(A \or B), since an OR is nested within a NOT
  • A \or (B \and (C \or D)), since an OR is nested within an AND

Conversion to DNF

Converting a formula to DNF involves using logical equivalences, such as the double negative elimination, De Morgan's laws, and the distributive law.

All logical formulas can be converted into an equivalent disjunctive normal form.[1]:152-153 However, in some cases conversion to DNF can lead to an exponential explosion of the formula. For example, in DNF, logical formulas of the following form have 2n terms:

(X_1 \or Y_1) \and (X_2 \or Y_2) \and \dots \and (X_n \or Y_n)

Any particular Boolean function can be represented by one and only one[note 1] full disjunctive normal form, one of the canonical forms.

Complexity issues

An important variation used in the study of computational complexity is k-DNF. A formula is in k-DNF if it is in DNF and each clause contains at most k literals. Dually to CNFs, the problem of deciding whether a given DNF is true for every variable assignment is NP-complete, the same holds if only k-DNFs are considered.

See also

Notes

  1. Ignoring variations based on associativity and commutativity of AND and OR.

References

  1. 1.0 1.1 Lua error in package.lua at line 80: module 'strict' not found.

External links

Lua error in package.lua at line 80: module 'strict' not found.

  • Lua error in package.lua at line 80: module 'strict' not found.