What if the OR answer is reversed?
Imagine a school rule:
βThe alarm stays off only when there is NO smoke OR heat.β
If either warning appears, OR gives 1 and NOR reverses it to 0. Only when both warnings are absent does the output become 1.
The NOR gate performs OR first, then reverses the answer.
Imagine a school rule:
βThe alarm stays off only when there is NO smoke OR heat.β
If either warning appears, OR gives 1 and NOR reverses it to 0. Only when both warnings are absent does the output become 1.
A NOR gate has two inputs and one output.
It first checks whether either input is 1. It then reverses that result.
The NOR symbol looks like an OR gate with a small circle on its output.
The small circle means NOT. It reverses the OR result.
Compare the NOR outputs with the OR truth table. Every output is reversed.
| A | B | X |
|---|---|---|
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 0 |
The inputs are labelled A and B. The output is labelled X.
This means X is the opposite of A OR B.
A NOR gate receives A = 0 and B = 1. What is the output X?
A = 0 and B = 0 gives X = 0.
OR gives 0, then NOR reverses it to X = 1.