Electronics/Boolean Algebra

Boolean Algebra edit

Boolean Algebra was created by George Boole (1815 - 1864) in his paper An Investigation of the Laws of Thought, on Which Are Founded the Mathematical Theories of Logic and Probabilities, published in 1854. It had few applications at the time, but eventually scientists and engineers realized that his system could be used to create efficient computer logic. The Boolean system has two states: True (T) or False (F). This can be represented in several different ways as on or off, one or zero, yes or no, etc. These states are manipulated by three fundamental operations called logical operators: AND, OR and NOT. These operators take certain inputs and produce an output based on a predetermined table of results. For example, the AND operator takes two (or more) inputs and returns an 'on' result only when both (or all) inputs are 'on'.

  • In these tables T means "True", or "Yes", or 1 (in electronics), and
  • F means "False", or "No" or 0 (in electronics).
  • For example, the 1st line of the AND table says that if A is F and B is F then the result also is F. This is also said often as If A is 0 and B is also 0, then A AND B = 0 times 0 = 0
  • Also at the bottom of the AND table 1 times 1 is 1.
  • Looking at the OR table, use plus instead of times: 0 plus 0 is 0, where again 0 is F and 1 is T. Only 0 and 1 exist, therefore if the result of the addition is more than 1, then change it to 1.
  • The 3rd table shows NEGATION: whatever it is, change it to the other; 0 is changed into 1, and 1 is changed into 0.
Truth Tables
AND
A B  
F F F
F T F
T F F
T T T
OR
A B  
F F F
F T T
T F T
T T T
NOT
A  
F T
T F

These simple operators are good because they allow us to create very simple logic circuits: if user put in a quarter AND the Coke button is pressed, drop a Coke

There are ways, however, to combine these expressions to make much more complex but useful digital circuits. By using multiple operators on the same inputs, it is possible to create much more complex outputs. An expression like: A and B or C would have a truth table of the following:

A and B or C
A B C X
0 0 0 0
0 0 1 1
0 1 0 0
0 1 1 1
1 0 0 0
1 0 1 1
1 1 0 1
1 1 1 1

This truth table follows the rules If A and B are true, or C is true, then X is true

Exercise: Go through each case in the table and check it using the above statement.

Formal Mathematical Operators edit

AND is represented by   or   that is A AND B would be   or  .

OR is represented by   or   that is A OR B would be   and  .

NOT is represented by   or   that is NOT A is   or  .

If these three operators are combined then the NOR and NAND can be created. So A NOR B is   or  . NAND is   or  . Other notations are valid as well, and many different combinations of them arise in mathematics and engineering. No universal standard has been agreed upon. However, most sources will make explicit the particular notation used.

Boolean Algebra Laws edit

Boolean Algebra, like regular algebra, has certain rules. These rules are Associativity, Distributivity, Commutativity and De Morgan's Laws. Associativity, Commutativity and Distributivity only apply to the AND and OR operators. Some of these laws may seem trivial in normal Algebra but in other algebras they are not.

Associativity edit

Associativity is the property of algebra that the order of evaluation of the terms is immaterial.

 
 

Or

 
 
Wikipedia:Associativity

Distributivity edit

Distibutivity is the property that an operator can be applied to the terms within the brackets.

 

Or

 
Wikipedia:Distributivity

Commutativity edit

Commutativity is the property that order of application of an operator is immaterial.

 
 

Or

 
 
Wikipedia:Commutativity

De Morgan's Law edit

De Morgan's Law is a consequence of the fact that the not or negation operator is not distributive.

 
 

Or

 
 

Notes edit

It is important to note that

 

Or

 

This can be seen as either AND having a higher precedence or the fact that Associativity does not hold between AND and OR or that it is an invalid application of distributivity.

Another way of looking at this is the possible application of our understanding of normal algebra rules using the second notation. Where clearly the analogy between OR being addition and AND being multiplication is made. We would never make this error if this were high school algebra.

Rules edit

All of these Laws Result in a number of rules used for the reduction of Boolean Algebra.

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  

Or

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  

Examples edit

Simplify the following Expressions.

  1.  
  2.  

Or

  1.  
  2.  

For number 1 using rule 7. We get.

 

Or

 

Which happens to be rule 5 so the answer is zero. In number 2 we can take out A. Given

 

Or

 

The Expression within brackets is rule 8. So the answer is A.

See also edit

Wikipedia: Boolean logic