Differences between revisions 1 and 2
Revision 1 as of 2003-11-04 00:45:19
Size: 356
Editor: wakko
Comment:
Revision 2 as of 2003-11-04 00:45:41
Size: 362
Editor: wakko
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
{{{
Line 17: Line 17:
}}}

Back to ComputerTerms

A Boolean algebra B is a sextuple

  • <Domain, * (AND), + (OR), ' (complement), 0, 1>

Essentially this is an algebra such that a*a = a.

   x + (y * z) = (x + y) * (x + z)
   x + x' = 1
   x + 0 = x
   0 <> 1
   x * y = y * x
   x * (y + z) = (x * y) + (x * z)
   x * x' = 0
   x * 1 = x

Back to ComputerTerms

BooleanAlgebra (last edited 2005-06-16 14:57:52 by yakko)