Difficulty: Easy
Correct Answer: AND
Explanation:
Introduction / Context:De Morgan's theorems provide equivalences between logic gate implementations, enabling circuit simplification and technology mapping. One classic identity states that a NOR operation can be realized using an AND gate with input inversion (bubbles) and output inversion representation.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Start from NOR: Y = NOT(A OR B).Apply De Morgan: Y = (NOT A) AND (NOT B).Interpretation: Use an AND gate; place bubbles on both inputs to indicate NOT A and NOT B.Hence: A NOR B is equivalent to a bubbled AND gate.Verification / Alternative check:
Truth table check for A, B ∈ {0,1} shows equality of outputs for NOR and bubbled-input AND.Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
AND
Discussion & Comments