Introduction to Digital Logic Gates

Table of Contents

What is digital logic and how do logic gates work?

Circuit with Single Switch and Truth Table

Let us examine the two basic circuits below. The top one has an open switch and therefore the bulb is OFF. The second one is closed and the bulb is ON.

The bulb in ON or OFF depending on the position of the switch. Let use 0 to describe the switch when it is open and 1 when the switch is closed. We also use 0 to describe the bulb when it is OFF and 1 when the bulb is ON to write all possible situations in the following table.

Circuit with One Switch

Fig. 1 - Single Switch

Input (switch) Output (Bulb)
0 0
1 1

Circuit with Two Switches in Parallel and Truth Table

We now examine circuits with two switches in parallel as in the figure below. Since the switches are in parallel, if either switch X is closed or switch Y is closed or both are closed the circuit is closed and the bulb is ON. The table below includes all possible combinations of the positions of the two switches and the corresponding state of the bulb (ON or OFF).

Circuit with Two Switches in Parallel

Fig. 2 - Circuit with Two Switches in Parallel

Top Switch: X Bottom Switch: Y Output (bulb)
0 0 0
0 1 1
1 0 1
1 1 1

The above table corresponds exactly to the OR function as defined in Boolean algebra.

Using Boolean algebra, the results in the table above may be written as follows:

X Y X+Y
0 0 1
0 1 1
1 0 1
1 1 1

Although the first three sums have the same meaning as in any mathematical addition, the last sum 1 + 1 = 1 suggests that the meaning of addition here is different. This is boolean algebra which originally used "TRUE" and "FALSE" before it was adopted in digital systems and 1 and 0 replaced the "TRUE" and "FALSE".

Circuit with Two Switches in Series and Truth Table

We now examine circuits with two switches in series as in the figure below. Since the switches are in series, the bulb is ON only when both switches are closed. The table below includes all possible combinations of the positions of the two switches and the corresponding state of the bulb (ON or OFF).

Circuit with Two Switches in Series

Fig. 3 - Circuit with Two Switches in Series

Left Switch: X Right Switch: Y Output (bulb)
0 0 0
0 1 0
1 0 0
1 1 1

The above table corresponds exactly to the AND function as defined in Boolean algebra.

Using Boolean algebra, the results in the table above may be written as follows:

X Y X . Y
0 0 0
0 1 0
1 0 0
1 1 1

This is boolean algebra which originally used "TRUE" and "FALSE" before it was adopted in digital systems and 1 and 0 replaced the "TRUE" and "FALSE".

AND and OR Digital Circuits and Digital Logic

The above circuits with switches were used to explain the idea behind digital logic circuits. In practice these circuits are electronic circuits and their representation is as follows:


OR and AND logic gates

Fig. 4 - OR and AND logic gates

XOR Digital Circuit and Digital Logic


The logic gate exclusive OR (XOR) is defined by its table of input and output values as follows: .

X Y X Y
0 0 0
0 1 1
1 0 1
1 1 0

XOR logic gates

Fig. 5 - XOR logic gates

More on logic gate.


More References and Links

  1. Digital Design by Wakerly(2008-01-01) Paperback – January 2005 - By Wakerly.
  2. Introduction to Logic Circuits & Logic Design with VHDL 1st ed. 2017 Edition - By Brock J. LaMeres.
  3. Digital Fundamentals - July 2014 - By Thomas Floyd , David Buchla (Author)