Tutorial 3 Answers
Tutorial 3 Answers
Tutorial 3
From Lecture 3 (Digital Logic)
Answer:
𝐙=𝐄+𝐁
𝐙 = 𝐃. 𝐂 + 𝐁
𝐙 = (𝐀 + 𝐁 + 𝐂). 𝐂 + 𝐁
3. Create the truth table for the circuit above.
Answer:
A B C C D=A+B+C 𝐄 = 𝐂. 𝐃 E+B 𝐙 = (𝐄 + 𝐁)
0 0 0 1 0 0 0 1
0 0 1 0 1 0 0 1
0 1 0 1 1 1 1 0
0 1 1 0 1 0 1 0
1 0 0 1 1 1 1 0
1 0 1 0 1 0 0 1
1 1 0 1 1 1 1 0
1 1 1 0 1 0 1 0
Answer:
𝐙 = 𝐀. 𝐁. 𝐂 + 𝐀. 𝐁. 𝐂 + 𝐀. 𝐁. 𝐂
Page 1
ITDR2102: Computer Organization – Tutorial Answers
𝐙 = 𝐀.𝐂 + 𝐁
6. Create a truth table from the above Z equation. Does the truth table match the answer from
question 3?
Answer:
A B C C A.C A.C+B 𝐙 = 𝐀. 𝐂 + 𝐁
0 0 0 1 0 0 1
0 0 1 0 0 0 1
0 1 0 1 0 1 0
0 1 1 0 0 1 0
1 0 0 1 1 1 0
1 0 1 0 0 0 1
1 1 0 1 1 1 0
1 1 1 0 0 1 0
7. Try to rework equation from question 2 using the boolean theorems, identities, and laws to get
it close to equation from question 4. NOTE: You will probably not get it to match exactly.
To do so would involve quite a bit foresight, intuition, and sleights of hand.
Answer:
Z=((A+B+C).C)+B
Z=A.C+B.C+C.C+B Using distribute proposition
Z=A.C+B.C+0+B Using identity proposition
Z=A.C+B.C+B
Z=A.C+B.C+B B.C+B=B Using simplification theorem
Z=A.C+B
a. Any logical circuit could be converted to use NAND gates only. [TRUE]
b. Any logical circuit could be converted to use NOR gates only. [TRUE]
c. Any logical circuit could be converted to use AND gates only. [FALSE]
Page 2