NOR GateNOR Gate
Definition
The following Boolean function is called the NOR gate or negated logical sum and is denoted as follows.
↓:{0,1}2→{0,1}
0↓0=1,0↓1=0,1↓0=0,1↓1=0
Description
It is a composition of the NOT gate and the OR gate, and it is named NOR by borrowing N(OT) and OR.
↓=¬∘∨
a↓b=¬(a∨b)
It operates opposite to the OR gate and produces a true output only when all inputs are false. Furthermore, {↓} is functionally complete, which can be seen as obvious due to (1).
부울 함수 | 기호 | 진리표 |
NOR |  | a | b | a↓b | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 |
|
Theorem
If the replication function is allowed, then {↓} is functionally complete. In other words, ↓ is a universal gate.
Proof
Theorem
The set of NOT and OR gates, {¬,∨}, is functionally complete.
According to the above theorem, it suffices to show that the NOT gate and the OR gate can be made only with the replication function cl and ↓.
NOT gate
¬=↓∘cl¬a=a↓a
holds.
↓∘cl(0)=0↓0=1=¬0↓∘cl(1)=1↓1=0=¬1
OR gate
∨=↓∘cl∘↓a∨b=(a↓b)↓(a↓b)
holds.
(0↓0)↓(0↓0)=(1↓1)=0=0∨0(0↓1)↓(0↓1)=(0↓0)=1=0∨1(1↓0)↓(1↓0)=(0↓0)=1=1∨0(1↓1)↓(1↓1)=(1↓1)=1=1∨1
■