DLD Lab 3
DLD Lab 3
EXPERIMENT # 3
1. Material Required:
● Logic Trainer
● Connecting Wires
● Power Supply
● Components: 4081, 4049, 4071
2. Procedure:
Consider as an example for the following Boolean function:
F1 =x + y’z
The function F1 is equal to 1 if x is equal to 1 or if both y’ and z are equal to 1, F1 is equal to 0
otherwise. The complement operation dictates that when y’=1 then y=0. Therefore, we can say
that F1=1 if x=1 or if y=0 and z=1. A Boolean function expresses the logical expression for all
possible values of the variables.
A Boolean function can be represented in a truth table. A truth table is a lot of combinations of
1’s and 0’s assigned to the binary variables and a column that shows the value of the function for
each binary combination. The number of rows in the truth table is 2n, where n is the number of
variables in the function. The binary combinations for the truth table are obtained from binary
numbers by counting from 0 through 2n-1. Following table shows the truth table for the function
F1.
BCS Digital Logic Design
0 0 0 0
0 0 1 1
0 1 0 0
0 1 1 0
1 0 0 1
1 0 1 1
1 1 0 1
1 1 1 1
Demorgan’s law can be stated in terms of logic terms, which is the 1st law states that,
(x+y)’= x’y’ Theorem 1
And the second law state that
(xy)’= x’+ y’ Theorem 2
0 0 1 1
0 1 1 1
1 0 1 1
1 1 0 0