CS137-lecture-20210209

Ch2.pdf

IMAGE IMAGE IMAGE

LUT = lookup table

IMAGE IMAGE IMAGE

SOP = sum of products

DeMorgan’s theorem #

  1. Two or more variables NAND’d together is the same as the two terms inverted and OR’d IMAGE
  2. Two or more variables NOR’d together is the same as the two variables inverted and AND’d together IMAGE

Lets show this via tables for these two equations:

\[\begin{aligned} F1 &= F2 \\ \neg(A \cdot B) &= \neg A + \neg B \end{aligned}\]

Here is a table for \(F1\) :

\(A B\) \(A \cdot B\) \(\neg(A \cdot B)\)
0 0 0 1
0 1 0 1
1 0 0 1
1 1 1 0

Here is a table for \(F2\) :

\(A B\) \(\neg A \neg B\) \(\neg A + \neg B\)
0 0 1 1 1
0 1 1 0 1
1 0 0 1 1
1 1 0 0 0

Notice that the output of each table is the same, thus the theorem is true.

IMAGE