Logic gates are a major component of a computers hardware, there are usually thousands of logic gates in the circuits of computers. Logic gates act as a switch and control the flow of electricity through them depending on the combination of input they receive.
The types of logic gates discussed in this section are:
NOT Gate ( represented with Ā)
OR Gate (represented with A + B)
NOR Gate
AND Gate (represented with A x B or A · B )
NAND Gate
XOR Gate ( Represented with ⊕ )
Each of the various working of the logic gates can be illustrated in Truth Tables. As circuits get big and multiple logic gates or used together it is good practice to use truth tables to trace the outcomes. Most truth tables will replace the text ON and OFF with 1 and 0.
THE NOT GATE
The NOT gate is the only gate with just one input. The NOT gate simply reverses the input, if the input is ON then the OUTPUT is OFF, if the input is OFF then the output is on.
NOT GATE
The image above illustrates a NOT gate, it is the circle that symbolises the NOT and this circle is also used on other gates discussed later. Below is the truth table for the NOT gate.
NOT GATE TRUTH TABLE
The NOT gate can be represented in Boolean Algebra by placing a combining overbar over the values to pass through a NOT gate, so NOT A can be represented as Ā
THE OR GATE
The OR gate will give an output value of ON if any of the inputs are ON.
OR GATE
The OR gate can be viewed as the mathematical equivalent of addition. A + 0 = A A + A = A 0 + 0 = 0 A + Ā = 1 Notably different from normal mathematics as in boolean logic the above shows the the sum of a variable will equal the variable, for example 1 + 1 = 1
OR GATE TRUTH TABLE
THE NOR GATE
The NOR Gate or NOT OR Gate will have an output if none of the inputs are 1. The NOR gate has a circle on the output to define the NOT part of the gate. You can see this as the opposite of an OR gate.
NOR GATE TRUTH TABLE
NOR GATE
THE AND GATE
The AND gate will only give an output when both inputs are ON, in other works input one AND input two need to be ON to make the output ON.
AND GATE
AND GATE TRUTH TABLE
The AND gate can be viewed are the mathematical equivalent to multiplication. A x 0 = 0 A x 1 = A A x A = A A x Ā = 0
THE NAND GATE
The NAND Gate or NOTAND Gate will have an output when the two inputs are not ON. Or with a three input NAND gate when all 3 inputs are not ON.
NAND GATE TRUTH TABLE
THE NAND GATE
THE XOR GATE
The XOR gate or eXclusive OR will only produce an output it the two inputs are different values.
XOR TRUTH TABLE
THE XOR GATE
THE XNOR GATE
The exclusive not or will be 1 if both input values are the same.