1.1.5. Other Gates
There are other logic gates that are made from the 3 basic gates. Their functions are commonly used and that is why they are represented as gates.
1.1.5.1. NAND Gate
It is the negated function of the AND gate.
a |
b |
c = a NAND b |
---|---|---|
0 |
0 |
1 |
0 |
1 |
1 |
1 |
0 |
1 |
1 |
1 |
0 |
1.1.5.2. NOR Gate
It is the negated function of the OR gate.
a |
b |
c = a NOR b |
---|---|---|
0 |
0 |
1 |
0 |
1 |
0 |
1 |
0 |
0 |
1 |
1 |
0 |