ENOTES

Logic gates with gate symbol and truth table

access_time Sep 30, 2021 remove_red_eye 10942

Every digital computer has digital circuits (IC, LSI) to perform binary operations. These digital circuits are made up of several logic gates and their combination. Thus, logic gates is the basic component of digital computer that operates on one or more input signals to produce an output signal. Each gates has its own specific function, algebraic expression, gate symbol and truth table. In a digital computer AND, OR, NOT are the three fundamental basic gates whereas, NAND, NOR, X-OR, X-NOR are the derived gates from the basic gates. All the logic gates are explained:

AND gate

It is an electronic circuit, which produce high logic (1) output when both the input logic are high (1) and produce low logic(0) when any one of the input logic is low (0). The output produce by this basic gate is the product of its input logic.

Algebraic expression
F=A.B where, A and B are inputs, F is an output and “.” Denotes AND operation

Gate symbol;

Truth Table:

ABF=A.B
000
010
100
111

Venn diagram:

OR gate

It is an electronic circuit, which produce high logic (1) output when any one of the input logic are high (1) and produce low logic(0) when both the input logic is low (0). The output produce by this basic gate is the sum of its input logic.

Algebraic expression:
F=A+B where, A and B are inputs, F is an output and “+” Denotes OR operation

Gate symbol:

Truth Table:

ABF=A+B
000
011
101
111

Venn diagram:

NOT gate

It is an electronic circuit, which produce high logic (1) output when the input logic is low (0) and produce low logic(0) when the input logic is high (1). The output produce by this basic gate is the reciprocal of its input logic.

Algebraic expression:
F=A’ where, A is inputs, F is an output 

Gate symbol:

Truth Table:

AF=A’
01
10

Venn diagram:

NAND gate

It is the combination of NOT and AND gate, which produce high logic (1) output when any one of the input logic is low (0) and produce low logic(0) when both the input logic is high (1). The output produce by this basic gate is the reciprocal or complement of AND gate. It is also known as derived gate.

Algebraic expression:
F=(A.B)’ where, A and B are inputs, F is an output.

Gate symbol:

Truth Table:

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

Venn diagram:

NOR gate

It is the combination of NOT and OR gate, which produce high logic (1) output when both the input logic is low (0) and produce low logic(0) when any one of the input logic is high (1). The output produce by this basic gate is the reciprocal or complement of OR gate. It is also known as derived gate.

Algebraic expression:
F=(A+B)’ where, A and B are inputs, F is an output.

Gate symbol:

Truth Table:

ABF=A+BF=(A+B)’
0001
0110
1010
1110

Venn diagram:

X-OR gate

It is derived gate, which produce low logic (0) output when both the input logic are either high (1) or low (0) otherwise it will produce high logic(1).

Algebraic expression:
F=A’.B+A.B’ where, A and B are inputs, F is an output.

Gate symbol:

Truth table:

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

Venn diagram:

X-NOR gate

It is derived gate, which produce high logic (1) output when both the input logic are either high (1) or low (0) otherwise it will produce low logic(0).

Algebraic expression:
F=A.B+A’.B’ where, A and B are inputs, F is an output.

Gate symbol:

Truth table:

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

Venn diagram:

Click here for e-notes