Dictionary    Maps    Thesaurus    Translate    Advanced >   


Tip: Click Thesaurus above for synonyms. Also, follow synonym links within the dictionary to find definitions from other sources.

1. The Free On-line Dictionary of Computing (30 December 2018)
DeMorgan's theorem

    A logical theorem which states that the complement
   of a conjunction is the disjunction of the complements or
   vice versa.  In symbols:

   	not (x and y) = (not x) or (not y)
   	not (x or y)  = (not x) and (not y)

   E.g. if it is not the case that I am tall and thin then I am
   either short or fat (or both).  The theorem can be extended to
   combinations of more than two terms in the obvious way.

   The same laws also apply to sets, replacing logical complement
   with set complement, conjunction ("and") with set
   intersection, and disjunction ("or") with set union.

   A (C) programmer might use this to re-write

   	if (!foo && !bar) ...
   as
   	if (!(foo || bar)) ...

   thus saving one operator application (though an optimising
   compiler should do the same, leaving the programmer free to
   use whichever form seemed clearest).

   (1995-12-14)


Common Misspellings >
Most Popular Searches: Define Misanthrope, Define Pulchritudinous, Define Happy, Define Veracity, Define Cornucopia, Define Almuerzo, Define Atresic, Define URL, Definitions Of Words, Definition Of Get Up, Definition Of Quid Pro Quo, Definition Of Irreconcilable Differences, Definition Of Word, Synonyms of Repetitive, Synonym Dictionary, Synonym Antonyms. See our main index and map index for more details.

©2011-2024 ZebraWords.com - Define Yourself - The Search for Meanings and Meaning Means I Mean. All content subject to terms and conditions as set out here. Contact Us, peruse our Privacy Policy