De Morgan's laws

From Wikipedia, the free encyclopedia

Jump to: navigation, search

In formal logic, De Morgan's laws are rules relating the logical operators 'and' and 'or' in terms of each other via negation.

NOT (P OR Q) = (NOT P) AND (NOT Q)
NOT (P AND Q) = (NOT P) OR (NOT Q)


In symbolic logic terms:

\neg(p\vee q)\iff(\neg p)\wedge(\neg q)
\neg(p\wedge q)\iff(\neg p)\vee(\neg q)

where:

  • \neg is the negation operator (NOT)
  • \wedge is the conjunction operator (AND)
  • \vee is the disjunction operator (OR)
  • \iff means logically equivalent (if and only if)

In set theory and Boolean algebra:

The intersection of A and B

"Union and intersection interchange under complementation."[1]:

\overline{A \cap B}=\overline{A} \cup \overline{B}
\overline{A \cup B}=\overline{A} \cap \overline{B}.

where:

  • \overline A is the negation of A, the overline is written above the terms to be negated
  • \cap is the intersection operator (AND)
  • \cup is the union operator (OR)

In set notation, De Morgan's law can be remembered using the mnemonic "break the line, change the sign".[2]

Contents

[edit] History

The law is named after Augustus De Morgan (1806–1871)[3] who introduced a formal version of the laws to classical propositional logic. De Morgan's formulation was influenced by algebraisation of logic undertaken by George Boole, which later cemented De Morgan's claim to the find. Although a similar observation was made by Aristotle and was known to Greek and Medieval logicians,[4] and although William of Ockham in the 14th century wrote down the words that would result by reading the laws out,[5] De Morgan is given credit for stating the laws formally and incorporating them in to the language of logic. De Morgan's Laws can be proved easily, and may even seem trivial.[6] Nonetheless, these laws are helpful in making valid inferences in proofs and deductive arguments.

[edit] Informal English Language Proof

De Morgan's theorem may be applied to the negation of a disjunction or the negation of a conjunction in all or part of a formula.

[edit] Negation of a disjunction

In the case of its application to a disjunction, consider the following claim: it is false that either A or B is true, which is written as:

\neg(A\vee B)

In that it has been established that neither A nor B is true, then it must follow that A is not true and B is not true; If either A or B were true, then the disjunction of A and B would be true, making its negation false.

Working in the opposite direction with the same type of problem, consider this claim:

(\neg A)\wedge(\neg B)

This claim asserts that A is false and B is false (or "not A" and "not B" are true). Knowing this, a disjunction of A and B would be false, also. However the negation of said disjunction would yield a true result that is logically equivalent to the original claim. Presented in English, this would follow the logic that "Since two things are false, it's also false that either of them are true."

[edit] Negation of a conjunction

The application of De Morgan's theorem to a conjunction is very similar to its application to a disjunction both in form and rationale. Consider the following claim: It is false that A and B are both true, which is written as:

\neg(A\wedge B)

In order for this claim to be true, either or both of A or B must be false, in that if they both were true, then the conjunction of A and B would be true, making its negation false. So, the original claim may be translated as "Either A is false or B is false", or "Either not A is true or not B is true".

(\neg A)\vee(\neg B)

Presented in English, this would follow the logic that "Since it is false that two things together are true, at least one of them must be false."

[edit] Formal Mathematical Proof

\overline{A \cap B}=\overline{A} \cup \overline{B} if and only if \overline{A \cap B}\subseteq\overline{A} \cup \overline{B} and \overline{A \cap B}\supseteq\overline{A} \cup \overline{B}.


for arbitrary x:

\subseteq inclusion:

x \in \overline{A \cap B}

x \notin {A \cap B}

x \notin A or x \notin B

x \in \overline A or x \in \overline B

x \in \overline A \cup \overline B

Therefore \overline{A \cap B}\subseteq\overline{A} \cup \overline{B}

\supseteq inclusion:

x \in \overline A \cup \overline B

x \in \overline A or x \in \overline B

x \notin A or x \notin B

x \notin {A \cap B}

x \in \overline{A \cap B}

Therefore \overline{A \cap B}\subseteq\overline{A} \cup \overline{B}


\overline{A \cap B}\subseteq\overline{A} \cup \overline{B} and \overline{A \cap B}\supseteq\overline{A} \cup \overline{B} therefore \overline{A \cap B}= \overline{A} \cup \overline{B} Q.E.D.


\overline{A \cup B}=\overline{A} \cap \overline{B} can be shown using a similar method.

[edit] Extensions of De Morgan's law

In extensions of classical propositional logic, the duality still holds (that is, to any logical operator we can always find its dual), since in the presence of the identities governing negation, one may always introduce an operator that is the De Morgan dual of another. This leads to an important property of logics based on classical logic, namely the existence of negation normal forms: any formula is equivalent to another formula where negations only occur applied to the non-logical atoms of the formula. The existence of negation normal forms drives many applications, for example in digital circuit design, where it is used to manipulate the types of logic gates, and in formal logic, where it is a prerequisite for finding the conjunctive normal form and disjunctive normal form of a formula. Computer programmers use them to change a complicated statement like IF ... AND (... OR ...) THEN ... into its opposite. They are also often useful in computations in elementary probability theory.

Let us define the dual of any propositional operator P(p, q, ...) depending on elementary propositions p, q, ... to be the operator Pd defined by

\mbox{P}^d(p, q, ...) = \neg P(\neg p, \neg q, \dots).

This idea can be generalised to quantifiers, so for example the universal quantifier and existential quantifier are duals:

 \forall x \, P(x) \equiv \neg \exists x \, \neg P(x),
 \exists x \, P(x) \equiv \neg \forall x \, \neg P(x).

To relate these quantifier dualities to the De Morgan laws, set up a model with some small number of elements in its domain D, such as

D = {a, b, c}.

Then

 \forall x \, P(x) \equiv P(a) \wedge P(b) \wedge P(c)

and

 \exists x \, P(x) \equiv P(a) \vee P(b) \vee P(c).\,

But, using De Morgan's laws,

 P(a) \wedge P(b) \wedge P(c) \equiv \neg (\neg P(a) \vee \neg P(b) \vee \neg P(c))

and

 P(a) \vee P(b) \vee P(c) \equiv \neg (\neg P(a) \wedge \neg P(b) \wedge \neg P(c)),

verifying the quantifier dualities in the model.

Then, the quantifier dualities can be extended further to modal logic, relating the box ("necessarily") and diamond ("possibly") operators:

 \Box p \equiv \neg \Diamond \neg p,
 \Diamond p \equiv \neg \Box \neg p.\,

In its application to the alethic modalities of possibility and necessity, Aristotle observed this case, and in the case of normal modal logic, the relationship of these modal operators to the quantification can be understood by setting up models using Kripke semantics.

[edit] See also

[edit] References

  1. ^ Boolean Algebra By R. L. Goodstein. ISBN 0486458946
  2. ^ 2000 Solved Problems in Digital Electronics By S. P. Bali
  3. ^ DeMorgan’s Theorems at mtsu.edu
  4. ^ Bocheński's History of Formal Logic
  5. ^ William of Ockham, Summa Logicae, part II, sections 32 & 33.
  6. ^ Augustus De Morgan (1806 -1871) by Robert H. Orr

[edit] External links

Personal tools