Make eBroadcast my Homepage | Contact Us   Return To The Main eBroadcast Homepage
Australia
Web Guide Search
Australia
Welcome It's
Australia
Australia
Web Guide: Encyclopedia
EBroadcast Australia
Powered by Wikipedia
Contents

Disjunctive normal form

Redirected from DNF Disjunctive Normal Form or DNF is a method of standardizing and normalizing logical formulas. A logical formula is considered to be in DNF if and only if it is a single disjunction of conjunctions. More simply stated, the outermost operators of the formula are all ORs, and there is only one level of nesting allowed, which may only contain literals[?] or conjunctions of literals. For example, all of the following formulas are in DNF:

 A ∨ B
 A
 (A ∧ B) ∨ C
 (A ∧ ¬B ∧ ¬C) ∨ (¬D ∧ E ∧ F)

However, the following formulas are not in DNF:

 ¬(A ∨ B) — NOT is the outermost operator
 A ∨ (B ∧ (C ∨ D)) — an OR is nested within an AND

Note that all logical formulas can be converted into disjunctive normal form. However, in some cases conversion to DNF can lead to an exponential explosion of the formula. For example, in DNF form, logical formulas of the following form have 2^n terms:

(X1 ∨ Y1) ∧ (X2 ∨ Y2) ∧ ... ∧ (Xn ∨ Yn)

The following is a formal grammar for DNF:

  1. <or> -> ∨
  2. <and> -> ∧
  3. <not> -> ¬
  4. <disjunct> -> <conjunct>
  5. <disjunct> -> <disjunct> <or> <conjunct>
  6. <conjunct> -> <literal>
  7. <conjunct> -> (<conjunct> <and> <literal>)
  8. <literal> -> <term>
  9. <literal> -> <not><term>

Where <term> is any variable.

See Also:

Elsewhere
EBroadcast Australia
Search engine
Web directory

CONTENTS:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z

Australia
eBroadcast Australia
Australia © 06 eBroadcast Australia | About eBroadcast | Legal Notices | Privacy Policy | Contact Us    Return To The Main eBroadcast Homepage