Digital Logic Design Homework #2: Name: Đinh Thanh Tùng ID: EEACIU18098
Digital Logic Design Homework #2: Name: Đinh Thanh Tùng ID: EEACIU18098
Digital Logic Design Homework #2: Name: Đinh Thanh Tùng ID: EEACIU18098
ID: EEACIU18098
a/ 𝐹(𝑥, 𝑦, 𝑧) = 𝛴 (0, 1, 3, 7)
yz 00 01 11 10
x
0 1 1 1 0
1 0 0 1 0
𝐹(𝑥, 𝑦, 𝑧) = x’y’ + yz
b/ 𝐹(𝑥, 𝑦, 𝑧) = 𝛴 (0, 1, 2, 4, 5)
yz 00 01 11 10
x
0 1 1 0 1
1 1 1 0 0
𝐹(𝑥, 𝑦, 𝑧) = y’ + x’z’
c/ 𝐹(𝑥, 𝑦, 𝑧) = 𝛴 (2, 3, 4, 5)
yz 00 01 11 10
x
0 0 0 1 1
1 1 1 0 0
d/ 𝐹 (𝑥, 𝑦, 𝑧) = 𝛴(1, 2, 3, 5, 7)
yz 00 01 11 10
x
0 0 1 1 1
1 0 1 1 0
𝐹(𝑥, 𝑦, 𝑧) = z + x’y
yz 00 01 11 10
x
0 1 1 0 0
1 0 1 1 0
𝐹(𝑥, 𝑦, 𝑧) = x’y’ + xz
yz 00 01 11 10
x
0 1 0 0 0
1 1 1 1 1
𝐹(𝑥, 𝑦, 𝑧) = x + y’z’
yz 00 01 11 10
x
0 0 1 1 0
1 1 1 1 0
𝐹(𝑥, 𝑦, 𝑧) = z + xy’
yz 00 01 11 10
x
0 1 0 1 0
1 0 0 1 0
𝐹(𝑥, 𝑦, 𝑧) = yz + x’y’z’
Problem 3: Simplify the following Boolean expressions to a minimum number of literals
a. 𝑥’𝑦’ + 𝑥’𝑦
= yz + yz’
= y(z+ z’) = y
c. (𝑥 + 𝑦)’(𝑥’ + 𝑦’)’
=0
d. (𝑥 + 𝑦’ + 𝑧’)(𝑥’ + 𝑧’)’
= xz + xy’z
= (1+ y’)xz
=xz
Problem 4: Obtain the truth table of the following functions, and express each function as a sum of
minterms and a product of maxterms:
x y z 𝑥’𝑦’ 𝑦’𝑧 𝑥𝑧’ 𝑥’𝑦’ + 𝑦’𝑧 + 𝑥𝑧’ x' + z’ (𝑥’𝑦’ + 𝑦’𝑧 + 𝑥𝑧’)(𝑥’ + 𝑧’)
0 0 0 0 1 0 0 1 1 1
1 0 0 1 0 1 0 1 1 1
2 0 1 0 1 0 0 1 1 1
3 0 1 1 0 0 0 0 1 0
4 1 0 0 0 0 1 1 1 1
5 1 0 1 0 1 0 1 0 0
6 1 1 0 0 0 1 1 1 1
7 1 1 1 0 0 0 0 0 0
Problem 5: Design a logic circuit whose output X is HIGH when at least two inputs of A, B and C are
low.
A B C X
0 0 0 0 1
1 0 0 1 1
2 0 1 0 1
3 0 1 1 0
4 1 0 0 1
5 1 0 1 0
6 1 1 0 0
7 1 1 1 0
AB 00 01 11 10
c
0 1 1 0 1
1 1 0 0 0
X = A’B’ + A’C’ + B’C’
B
X