Disjunctive normal form
In boolean logic, a disjunctive normal form (DNF) is a normal form of a logical formula consisting of a disjunction of conjunctions; it can also be described as an OR of ANDs, a sum of products, or — in philosophical logic — a cluster concept.[1] The disjunctive normal form and its counterpart, the conjunctive normal form, are the most common standardized ways of representing boolean expressions. They are widely used in various applications such as circuit design or automated theorem proving.
Definition
[edit | edit source]A logical formula is considered to be in DNF if it is a disjunction of one or more conjunctions of one or more literals.[2][3][4] A DNF formula is in full disjunctive normal form if each of its variables appears exactly once in every conjunction and each conjunction appears at most once (up to the order of variables). 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 context-free grammar for DNF:
- DNF (Disjunct) (Disjunct) DNF
- Disjunct Literal Literal Disjunct
- Literal Variable Variable
Where Variable is any variable.
For example, all of the following formulas are in DNF:
The formula is in DNF, but not in full DNF; an equivalent full-DNF version is .
The following formulas are not in DNF:
- , since an OR is nested within a NOT
- , since an AND is nested within a NOT
- , since an OR is nested within an AND[5]
Conversion to DNF
[edit | edit source]In classical logic each propositional formula can be converted to DNF[6] ...
... by syntactic means
[edit | edit source]The conversion involves using logical equivalences, such as double negation elimination, De Morgan's laws, and the distributive law. Formulas built from the primitive connectives [7] can be converted to DNF by the following canonical term rewriting system:[8]
... by semantic means
[edit | edit source]The full DNF of a formula can be read off its truth table.[9][10] For example, consider the formula
- .[11]
The corresponding truth table is
T T T F T F F T F T T F F T F T T F T F T T F T F T T T F F T F F T F T F T T T F T F T T F T F T F F T F T F F T T F T F T F F F F T F T T T F
- The full DNF equivalent of is
- The full DNF equivalent of is
Remark
[edit | edit source]A propositional formula can be represented by one and only one full DNF.[13] In contrast, several plain DNFs may be possible. For example, by applying the rule three times, the full DNF of the above can be simplified to . However, there are also equivalent DNF formulas that cannot be transformed one into another by this rule, see the pictures for an example.
Disjunctive Normal Form Theorem
[edit | edit source]It is a theorem that all consistent formulas in propositional logic can be converted to disjunctive normal form.[14][15][16][17] This is called the Disjunctive Normal Form Theorem.[14][15][16][17] The formal statement is as follows:
Disjunctive Normal Form Theorem: Suppose
is a sentence in a propositional language
with
sentence letters, which we shall denote by
. If
is not a contradiction, then it is truth-functionally equivalent to a disjunction of conjunctions of the form
, where
, and
.[15]
The proof follows from the procedure given above for generating DNFs from truth tables. Formally, the proof is as follows:
Suppose
is a sentence in a propositional language whose sentence letters are
. For each row of
's truth table, write out a corresponding conjunction
, where
is defined to be
if
takes the value
at that row, and is
if
takes the value
at that row; similarly for
,
, etc. (the alphabetical ordering of
in the conjunctions is quite arbitrary; any other could be chosen instead). Now form the disjunction of all these conjunctions which correspond to
rows of
's truth table. This disjunction is a sentence in
,[18] which by the reasoning above is truth-functionally equivalent to
. This construction obviously presupposes that
takes the value
on at least one row of its truth table; if
doesn’t, i.e., if
is a contradiction, then
is equivalent to
, which is, of course, also a sentence in
.[15]
This theorem is a convenient way to derive many useful metalogical results in propositional logic, such as, trivially, the result that the set of connectives
Maximum number of conjunctions
[edit | edit source]Any propositional formula is built from variables, where .
There are possible literals: .
has non-empty subsets.[19]
This is the maximum number of conjunctions a DNF can have.[13]
A full DNF can have up to conjunctions, one for each row of the truth table.
Example 1
Consider a formula with two variables and .
The longest possible DNF has conjunctions:[13]
The longest possible full DNF has 4 conjunctions: they are underlined.
This formula is a tautology. It can be simplified to or to , which are also tautologies, as well as valid DNFs.
Example 2
Each DNF of the e.g. formula has conjunctions.
Computational complexity
[edit | edit source]The Boolean satisfiability problem on conjunctive normal form formulas is NP-complete. By the duality principle, so is the falsifiability problem on DNF formulas. Therefore, it is co-NP-hard to decide if a DNF formula is a tautology.
Conversely, a DNF formula is satisfiable if, and only if, one of its conjunctions is satisfiable. This can be decided in polynomial time simply by checking that at least one conjunction does not contain conflicting literals.
Variants
[edit | edit source]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 conjunction contains at most k literals.[20]
See also
[edit | edit source]- Algebraic normal form – an XOR of AND clauses
- Blake canonical form – DNF including all prime implicants
- Quine–McCluskey algorithm – algorithm for calculating prime implicants
- Conjunction/disjunction duality
- Propositional logic
- Truth table
Notes
[edit | edit source]- ^ Post 1921.
- ^ Davey & Priestley 1990, p. 153.
- ^ Gries & Schneider 1993, p. 67.
- ^ Whitesitt 2012, pp. 33–37.
- ^ However, this one is in negation normal form.
- ^ Davey & Priestley 1990, p. 152-153.
- ^ Formulas with other connectives can be brought into negation normal form first.
- ^ Dershowitz & Jouannaud 1990, p. 270, Sect.5.1.
- ^ Smullyan 1968, p. 14: "Make a truth-table for the formula. Each line of the table which comes out "T" will yield one of the basic conjunctions of the disjunctive normal form."
- ^ Sobolev 2020.
- ^ = ((NOT (p AND q)) IFF ((NOT r) NAND (p XOR q)))
- ^ like
- ^ a b c It is assumed that repetitions and variations[12] based on the commutativity and associativity of and do not occur.
- ^ a b Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- ^ a b c d e Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- ^ a b Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- ^ a b Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- ^ That is, the language with the propositional variables and the connectives .
- ^
- ^ Arora & Barak 2009.
References
[edit | edit source]- Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
- Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).