Chapter-3 Logic Gates: Introduction
Chapter-3 Logic Gates: Introduction
Chapter-3
LOGIC GATES
Introduction:
Gate: A Gate is a simply an electronic circuit which operates on one or more input signals and
always produces an output signal.
Gates are digital (two state) circuits because the input and output signals are either low voltage (0) or
high voltage (1).
Gates are often called logic circuits because they can be analyzed with Boolean algebra.
Gates are classified into two types:
Logic gates
Basic Gates:
NOT Gate:
A NOT gate has only one input and one output.
The output state is always the opposite of the input state.
A NOT Gate is also called as Inverter gate, because the output is not same as the input.
The output is sometimes called the complement (opposite) of the input.
The logical symbol and the truth table of NOT gate are given below.
X
X X 0 1
1 0
OR Gate:
A OR gate has two or more input signal but only one output signal.
If any of the input signals is 1 (high), then the output is 1 (high).
The logical symbol for two-input OR gate and the truth table is given below.
1|Page
Chapter 3- Logic Gates
X Y F = X+Y
X F=X+Y 0 0 0
0 1 1
Y
1 0 1
1 1 1
AND Gate:
A AND gate has two or more input signal but only one output signal.
When all the input signals are 1 (high), the output is 1 (high), otherwise the output is 0.
The logical symbol for two-input AND gate and the truth table is given below.
X Y F = X.Y
X F = X .Y 0 0 0
0 1 0
Y
1 0 0
1 1 1
NOR Gate:
A NOR gate has two or more input signal but only one output signal.
The NOR gate is a complemented of OR gate.
The output of NOR gate will be 1 only when all inputs are 0 and output will be 0 if any input
represents a 1.
NOR is short form of NOT-OR.
The symbol is used to represent a NOR operation. So X + Y can be written as X NOR Y or X Y.
The logical structure shows an OR gate and NOT gate. For input X and Y, the output of the OR gate
will be X+Y which is fed as input to the NOT gate. So the output of NOR gate is given by X + Y
which is equal to X . Y
X F=X+Y F=X+Y
Y
The logical symbol for two-input NOR gate and the truth table is given below.
X Y Z F= + +
X F=X+Y 0 0 0 1
0 0 1 0
Y 0 1 0 0
X Y F= + 0 1 1 0
0 0 1 1 0 0 0
0 1 0 1 0 1 0
1 0 0 1 1 0 0
1 1 0 1 1 1 0
2|Page
Chapter 3- Logic Gates
NAND Gate:
A NAND gate has two or more input signal but only one output signal.
The NAND gate is a complemented of AND gate.
The output of NAND gate will be 0 only when all inputs are 1 and output will be 0 if any input
represents a 0.
NAND is short form of NOT-AND.
The symbol is used to represent a NOR operation. So X . Y can be written as X NAND Y or X Y.
The logical structure shows an AND gate and NOT gate. For input X and Y, the output of the OR
gate will be X .Y which is fed as input to the NOT gate. So the output of NAND gate is given by
X . Y which is equal to X + Y
X F=X.Y F = X .Y
Y
The logical symbol for two-input NAND gate and the truth table is given below.
X F = X .Y
Y
X Y F= . X Y Z F= . .
0 0 1 0 0 0 1
0 1 1 0 0 1 1
1 0 1 0 1 0 1
1 1 0 0 1 1 1
1 0 0 1
1 0 1 1
1 1 0 1
XOR (Exclusive-OR) Gate: 1 1 1 0
An exclusive-OR has two or more input signal but only one output signal.
Exclusive-OR gate is different form of OR gate.
Exclusive-OR gate produces output 1 for only those input combinations that have odd number of 1’s.
The output is 0 if there are even number of 1’s in the input.
The output is 1 if there are odd number of 1’s in the input.
In Boolean algebra, ϴ sign stands for XOR operation. Thus X XOR Y can be written as XϴY
If the output is given by:
F=XϴY
3|Page
Chapter 3- Logic Gates
F=XY+ XY
The XOR gate has a symbol similar to OR gate, except the additional curved line of the input side.
X F=XϴY=XY+ XY
Y
The following truth table illustrates XOR operation for 2 and 3 inputs.
NAND to NOT:
In the figure we have two input NAND gate whose inputs are purposely connected together so that
the same input is applied to both.
F = X .X = X
X
5|Page
Chapter 3- Logic Gates
NOR to NOT:
Figure shows that NOR gate with its inputs connected together behaves as a NOT gate.
F=X+X=X
X
6|Page
Chapter 3- Logic Gates
NAND to OR:
In the figure two NOR gates are arranged so that the OR operation is performed.
NOR gate 2 is used as NOT gate.
X F1 = X + Y F2 = X + Y = X + Y
Y
7|Page