Boolean algebra

branch of algebra abstracting logical operations

In mathematics, Boolean algebra is an algebra for binary digits (where 0 means false and 1 means true).[1] It is equipped with three operators: conjunction (AND), disjunction (OR) and negation (NOT).[2] It uses normal math symbols, but it does not work in the same way. It is named for George Boole,[3] who invented it in the middle 19th century. Boolean algebra did not get much attention except from mathematicians until the 20th century when engineers began using it for logic gates.

NOT gate change

NOT
0 1
1 0

[4]

The NOT operator is written with a bar over numbers or letters like this:

 
 
 

It means that the output is not the input.

AND gate change

AND 0 1
0 0 0
1 0 1

[4]

The AND operator is written as   like this:[5]

 
 
 
 

The output is true if and only if one and the other input is true.

OR gate change

OR 0 1
0 0 1
1 1 1

[4]

The OR operator is written as   like this:[5]

 
 
 
 

If one or the other input is true, then the output to be true (and false otherwise).

XOR gate change

XOR 0 1
0 0 1
1 1 0

[4]

XOR basically means "exclusive or", meaning one input or the other must be true, but not both. It is also sometimes called NOR, which means the same thing.

The XOR operator is written as   like this:

 
 
 
 

In other words, the XOR operator returns true precisely when one or the other input is true—but not both.

Identities change

Different gates can be put together in different orders:

  is the same as an AND then a NOT. This is called a NAND gate.

It is not the same as a NOT then an AND:  

 
 

which is called AND identity table

AND 1 0 Any
1 TRUE 0 0
0 0 0  
Any 0    

, if  .[source?]


or if  =TRUE, TRUE.,

De Morgan's laws change

Augustus De Morgan discovered that it is possible to preserve the truth values of Boolean expressions by changing a   sign to a   sign, while making or breaking a bar. That is:

 
 

These findings are commonly known as De Morgan's laws.

Related pages change

References change

  1. "Comprehensive List of Logic Symbols". Math Vault. 2020-04-06. Retrieved 2020-09-02.
  2. Weisstein, Eric W. "Boolean Algebra". mathworld.wolfram.com. Retrieved 2020-09-02.
  3. "Boolean algebra | Define Boolean algebra at Dictionary.com". Dictionary.reference.com. 1997-02-27. Retrieved 2010-08-12.
  4. 4.0 4.1 4.2 4.3 "Logic Gates". Kpsec.freeuk.com. Retrieved 2010-08-12.
  5. 5.0 5.1 "Elements of Boolean Algebra". www.ee.surrey.ac.uk. Archived from the original on 2020-07-21. Retrieved 2020-09-02.

Other websites change