Difficulty: Easy
Correct Answer: OR
Explanation:
Introduction / Context:
Gate equivalence is essential when substituting parts or simplifying designs. Recognizing how composite gate configurations replicate standard functions like NOR helps with logic minimization and hardware implementation choices.
Given Data / Assumptions:
Concept / Approach:
The NOR function is X = NOT(A + B) for two inputs (and extends similarly for more inputs). That is exactly what occurs if an OR gate’s output is fed into an inverter. Hence, an OR followed by NOT is equivalent to a single NOR gate symbol.
Step-by-Step Solution:
Start with OR: Y = A + B.Invert the result: X = NOT(Y) = NOT(A + B).By definition, X equals the NOR of A and B.
Verification / Alternative check:
Compare truth tables. For inputs 00, 01, 10, 11, the OR-then-invert sequence gives outputs 1, 0, 0, 0, which is the NOR truth table exactly.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
OR
Discussion & Comments