You are on page 1of 3

Truth tables for 3-input AND, OR, NAND and NOR gates

a) 3-input AND gate:

Inputs Output
A B C Y = ABC
0 0 0 0
0 0 1 0
0 1 0 0
0 1 1 0
1 0 0 0
1 0 1 0
1 1 0 0
1 1 1 1

b) 3-input OR gate:

Inputs Output
A B C Y=A+B+C
0 0 0 0
0 0 1 1
0 1 0 1
0 1 1 1
1 0 0 1
1 0 1 1
1 1 0 1
1 1 1 1

c) 3-input NAND gate:

Inputs Output
A B C
0 0 0 1
0 0 1 1
0 1 0 1
0 1 1 1
1 0 0 1
1 0 1 1
1 1 0 1
1 1 1 0

d) 3-input NOR gate:

Inputs Output
A B C
0 0 0 1
0 0 1 0
0 1 0 0
0 1 1 0
1 0 0 0
1 0 1 0
1 1 0 0
1 1 1 0

You might also like