Hello Readers, in this article we will discuss different types of logic gates with their Graphical Symbol, Truth Table, Algebraic Expression, etc. Logic gates being a fundamental element of any electronic circuit is very important to know about them.
 

Introduction

We all know that every digital computer works on binary digits also known as BITS (0, 1). Every computer works on 0 and 1. Since it is the fundamental unit of computing, it is necessary to manipulate them in order to use computers in an effective way. In the same consent, Logic gates come to play. In easy terms, logic gates are the fundamental units of a digital circuit that help in manipulating binary digits 0 and 1.  A logic gate may take one or two inputs in order to produce one or many outputs. Generally, there are two types of logic gates.

Types of Logic Gates

There are mainly two types of logic gates. They are listed below:
  1. Fundamental Gates
  2. Derived Gates

Fundamental Gates

These are the types of gates that are fundamental i.e. the primary models of gates or digital circuits. Also, they are of different types:
  1. AND gate
  2. OR gate
  3. NOT gate

AND Gate

AND Gate is one of the fundamental gates that produce high logic output i.e. 1 when both the inputs are high and produces low logic output i.e. 0 when any of the inputs are low. The output produces by AND gate is the same as the arithmetical multiplication. Let F be the function and A and B be the output then the algebraic expression is given as follows:
F = A.B

The gate symbol of the AND gate is as follows:

AND Gate
Graphical Symbol of AND Gate

The truth table of AND Gate is given as follows:

ABF = A.B
000
010
100
111

OR Gate

OR gate is one of the fundamental gates that produce high logic output i.e. 1 when any of the inputs are high and produce low logic output i.e. 0 only when both the inputs are low. The output produces by the OR gate is the same as the arithmetical addition. Let F be the function and A and B be the output then the algebraic expression is given as follows:
F = A + B

The gate symbol of the OR gate is given as:

OR Gate
Graphical Symbol of OR gate

The truth table of the OR gate is given as follows:

ABF = A + B
000
011
101
111

NOT Gate

NOT gate is a type of fundamental gate that produces high logic output when the input is low and produces low logic output when the input is high. The output produces by the NOT gate is the reciprocal of the input. Let F be the function and A be the input then the algebraic expression of NOT gate is given as follows:
F = A’

The graphical symbol of NOT gate is given as follows:

NOT Gate
Graphical Symbol of NOT gate

The truth table of NOT gate is given as follows:

AA’
10
01

Derived Gates

They are the types of gates that are a combination of different fundamental gates. There are different types:
  1. NAND Gate
  2. NOR Gate
  3. X-OR Gate
  4. X-NOR Gate

NAND Gate

It is a gate combined of NOT gate and AND Gate. It produces high logic output when any of the inputs is low and produces low logic output when both the inputs are high. The output produced by this gate is the reciprocal of AND Gate. Hence the algebraic expression is given as:
F = (A.B)’

The graphical symbol of NAND Gate is given as:

NAND GATE
Graphical Symbol of NAND Gate

The truth table of NAND Gate is given as:

ABA.B(A.B)’
0001
0101
1001
1110

NOR Gate

It is a gate combined of NOT and OR Gate. It produces high logic output when both the inputs are low and produce high logic output when any of the input is high. The output produced by this gate is reciprocal of the OR gate. Hence the algebraic expression of NOR gate is given as:
F = (A + B)’

The graphical Symbol of the NOR gate is given as:

NOR GATE
Graphical Symbol of NOR gate

The Truth table of NOT gate is given as:

ABA+B(A+B)’
0001
0110
1010
1110

X-OR Gate

It is a type of derived gate that produces high logic output when both inputs are not the same and produce low logic output when both the inputs are the same. Hence the algebraic expression is given as:
F = A’ . B + A. B’

The graphical symbol of X-OR Gate is given as:

X_OR GATE
Graphical Symbol of X-OR gate

The truth table of X-OR Gate is given as:

ABA’B’A’.BA.B’A’.B + A.B’
0011000
0110101
1001011
1100000

X-NOR Gate

It is a type of derived gate that produces high logic when both the inputs are the same and produces low logic when both the inputs are not the same. Hence the algebraic expression is given as:
F = A.B + A’.B’

The graphical symbol of X-NOR Gate is given as:

X_NOR GATE
Graphical Symbol of X-NOR Gate

The truth table of X-NOR Gate is given as:

ABA’B’A.BA’.B’A.B + A’.B’
0011011
0110000
1001000
1100101

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *