Difficulty: Easy
Correct Answer: OR gate immediately followed by an inverter
Explanation:
Introduction / Context:
Recognizing functional equivalence among logic gate combinations is essential for logic simplification, hardware substitution, and understanding universal gates. NOR and NAND are universal because they can synthesize any Boolean function, but each also corresponds to a simple “gate plus inverter” form.
Given Data / Assumptions:
Concept / Approach:
The NOR operation is X = NOT(A + B). This is precisely the output of an OR gate feeding an inverter. No other single “gate plus inverter” pair matches NOR’s truth table directly.
Step-by-Step Solution:
Start with OR: Y = A + B.Invert: X = NOT(Y) = NOT(A + B).By definition, this equals the NOR function.
Verification / Alternative check:
Compare truth tables for NOR and the OR-then-inverter combination; they match for all four input pairs (00→1, 01→0, 10→0, 11→0).
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
OR gate immediately followed by an inverter
Discussion & Comments