For a video version of this tutorial, please refer to this link.
The NOT gate schematic symbol looks like a triangle with clown nose on the Output side (as shown in the Figure above).
In logic circuits, inputs and outputs are binary, which means their value can either be 0 or 1. So:
- If NOT receives a 0 at the input, it will output 1.
- If NOT receives 1 at the input, it will output 0.
To sum it up, the truth table for the NOT gate will be as the following:
Input | Output |
---|---|
X | F |
0 | 1 |
1 | 0 |
F = X' (or you can have a bar above the X)
where : F is the output and X is the input