Class 10 > Unit # 17:Introductory Electronics > Logic gates (AND,OR,NOT,NAND,NOR)


Basic Logic Gates: Definitions, Symbols, and Truth Tables - Talha's Physics Academy

Talha's Physics Academy

Basic Logic Gates: Definitions, Symbols, and Truth Tables

Introduction to Logic Gates

"Logic gates are fundamental building blocks of digital electronic circuits that make logical decisions based on the combination of digital inputs (0 and 1)."

Below are the definitions, mathematical operations, symbols, and truth tables for the five standard logic gates: AND, OR, NOT, NAND, and NOR.

1. AND Gate

An AND gate is a digital circuit with two or more inputs and a single output. It operates on the rules of logical multiplication. The output is high ($1$) only when all inputs are high ($1$).

Boolean Expression: $Y = A \cdot B$ (for two inputs)

Fig: Standard logic symbol of an AND gate.

Truth Tables

Two-Input AND Operation

ABY = A · B
000
010
100
111

Three-Input AND Operation

ABCY = A · B · C
0000
0010
0100
0110
1000
1010
1100
1111

2. OR Gate

An OR gate is a digital circuit with two or more inputs and a single output. It operates on the rules of logical addition. The output is high ($1$) if at least one input is high ($1$).

Boolean Expression: $Y = A + B$ (for two inputs)

Fig: Standard logic symbol of an OR gate.

Truth Tables

Two-Input OR Operation

ABY = A + B
000
011
101
111

Three-Input OR Operation

ABCY = A + B + C
0000
0011
0101
0111
1001
1011
1101
1111

3. NOT Gate (Inverter)

A NOT gate is a digital circuit with a single input and a single output. It operates on the rules of logical complement (inversion), reversing the input state.

Boolean Expression: $Y = \overline{A}$

Fig: Standard logic symbol of a NOT gate.

Truth Table

AY = $\overline{A}$
01
10

4. NAND Gate

A NAND gate (Not-AND) is a digital circuit with two or more inputs and a single output. It is constructed by connecting a NOT gate at the output of an AND gate. The output is low ($0$) only when all inputs are high ($1$).

Boolean Expression: $Y = \overline{A \cdot B}$

Fig: Standard logic symbol of a NAND gate.

Truth Table

ABY = $\overline{A \cdot B}$
001
011
101
110

5. NOR Gate

A NOR gate (Not-OR) is a digital circuit with two or more inputs and a single output. It is constructed by connecting a NOT gate at the output of an OR gate. The output is high ($1$) only when all inputs are low ($0$).

Boolean Expression: $Y = \overline{A + B}$

Fig: Standard logic symbol of a NOR gate.

Truth Table

ABY = $\overline{A + B}$
001
010
100
110

© 2026 Talha's Physics Academy. All rights reserved.

No comments:

Post a Comment