Differences between revisions 2 and 3
Revision 2 as of 2003-11-04 00:45:41
Size: 362
Editor: wakko
Comment:
Revision 3 as of 2003-11-04 00:49:46
Size: 463
Editor: yakko
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
Essentially this is an algebra such that a*a = a. The following rules hold for a boolean algebra:
Line 17: Line 18:
   x * x = x
Line 18: Line 20:

SEE ALSO:

   * BooleanTerm
   * GroundBooleanTerm
   * MonotoneBooleanTerm

Back to ComputerTerms

A Boolean algebra B is a sextuple

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

The following rules hold for a boolean algebra:

   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
   x * x = x

SEE ALSO:

Back to ComputerTerms

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