Difficulty: Easy
Correct Answer: NAND
Explanation:
Introduction / Context:
Bubble (inversion) notation on logic symbols is a compact way to show complemented signals. Being able to translate bubble logic into standard Boolean expressions allows quick recognition of gate equivalences without redrawing entire schematics.
Given Data / Assumptions:
Concept / Approach:
Bubbles on inputs mean those inputs are inverted before entering the gate. For two inputs, the Boolean function is Y = (A’ + B’). Apply De Morgan's theorem to rewrite this as Y = (A · B)’ which is exactly the NAND function. Thus, an OR with complemented inputs is equivalent to a NAND with non-inverted inputs.
Step-by-Step Solution:
Verification / Alternative check:
Construct truth tables for Y1 = (A’ + B’) and Y2 = (A · B)’ and compare row by row; they match exactly. Logic simulators will also show identical waveforms for the same inputs, confirming the equivalence.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
NAND
Discussion & Comments