Author: M Abo Bakar Aslam

AND Gate

The AND gate produces outputs HIGH only when all inputs are HIGH. It performs logical multiplication in digital electronics.

1. Properties

  1. Minimum two inputs
  2. Output is 1 only if every input is 1
  3. Output is 0, if any input is 0

2. Symbol - 2 Inputs AND Gate

AND Gate with 2 Inputs
Figure 1: AND Gate with 2 Inputs

3. Boolean Expression - 2 inputs AND Gate

Y = A ⋅ B

4. Truth Table - 2 Inputs AND Gate

Total Number of Rows = 2^(number of inputs) = 2^2 = 4
Total Numbers: 0, 1, 2, 3
ABY
000
010
100
111


5. AND Gate with 3 Inputs

Symbol

AND Gate with 3 Inputs
Figure 2: AND Gate with 3 Inputs

Boolean Expression

Y = A ⋅ B . C

Truth Table

Total Number of Rows = 2^(number of inputs) = 2^3 = 8
Total Numbers: 0, 1, 2, 3, 4, 5, 6, 7
ABCY
0000
0010
0100
0110
1000
1010
1100
1111


6. AND Gate with 4 Inputs

Symbol

AND Gate with 4 Inputs
Figure 3: AND Gate with 4 Inputs

Boolean Expression

Y = A ⋅ B . C . D

Truth Table

Total Number of Rows = 2^(number of inputs) = 2^4 = 16
Total Numbers: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
ABCDY
00000
00010
00100
00110
01000
01010
01100
01110
10000
10010
10100
10110
11000
11010
11100
11111


7. AND Gate with 1 Inputs

This logic-gates actually doesn't exist but we can construct it by using 2-Input-AND-Gate.

Symbol

AND Gate with 1 Input
Figure 4: AND Gate with 1 Inputs

Boolean Expression

Y = A ⋅ A = A

Truth Table

Total Number of Rows = 2^(number of inputs) = 2^1 = 2
Total Numbers: 0, 1
AY
00
11