Basic concepts, Digital electronics, Electronics, Integrated circuits

Boolean theorems

The boolean theorems are a set of rules from boolean algebra to simplify logic expressions of combinational circuits.

Post about combinational circuitsClick here

Boolean algebra is a fundamental mathematical tool for digital computing, where variables and functions have only binary values of “0” or “1”. It was introduced in 1854 by the British mathematician George Boole. In this algebra, the add signal (+) represents the logical operation OR and the multiplier signal (\times ou \cdot) represents the logical operation AND.

Boolean theorems with one variable

Every variable is represented by a letter; this variable’s negation is usually represented by a bar above the letter. For example, \overline{A} is the negation of A, therefore, \overline{A} will always have the opposite binary value of A. This is the list of theorems with only one variable.

  • A+0=A
boolean theorem
  • A+1=1
boolean theorem
  • A+A=A
boolean theorem
  • A+\overline{A}=1
boolean theorem
  • A\cdot 0=0
boolean theorem
  • A\cdot 1=A
boolean theorem
  • A\cdot A=A
boolean theorem
  • A\cdot\overline{A}=0

Boolean theorems with two or three variables

  • A+B=B+A
  • A\cdot B=B\cdot A
  • A+(B+C)=(A+B)+C=A+B+C
  • A(BC)=(AB)C=ABC
  • A(B+C)=AB+AC
  • (A+B)(C+D)=AC+AD+BC+BD
  • A+AB=A
  • A+\overline{A}B=A+B
  • \overline{A}+AB=\overline{A}+B

De Morgan theorems

These are very useful in manipulation of logical expressions.

\overline{(A+B)}=\overline{A}\cdot \overline{B}

\overline{(A\cdot B)}=\overline{A}+\overline{B}

Proving De Morgan theorems with a truth table and considering all possibilities.

\overline{(A+B)}=\overline{A}\cdot \overline{B}

ABA+B\overline{(A+B)}\overline{A}\overline{B}\overline{A}\cdot \overline{B}
0001111
0110100
1010010
1110000

\overline{(A\cdot B)}=\overline{A}+\overline{B}

ABA\cdot B\overline{(A\cdot B)}\overline{A}\overline{B}\overline{A}+\overline{B}
0001111
0101101
1001011
1110000

For what serves the boolean theorems?

With these theorems, combinational circuits can be simplified to have only one type of logic door such as NAND or NOR, since commercial integrated circuits with logic door uses only a type of door.

Some examples of commercial chips. Source: Circuit bread.

About Pedro Ney Stroski

Leave a Reply

Your email address will not be published. Required fields are marked *