Difficulty: Easy
Correct Answer: a NAND and an OR gate with inverted inputs
Explanation:
Introduction / Context:
De Morgan’s theorems are fundamental identities used to transform logic expressions and convert between gate types. They allow designers to swap between NAND/NOR implementations and AND/OR structures with input or output inversions, which is crucial for technology mapping and minimizing parts in practical circuits.
Given Data / Assumptions:
Concept / Approach:
The given identity states that the complement of an AND equals the OR of the complements. In gate terms, an AND followed by an inverter (i.e., a NAND) is equivalent to an OR gate whose inputs are both inverted. This is the classic translation used to realize functions with only NAND gates, or to interpret bubble-logic schematics correctly.
Step-by-Step Solution:
Verification / Alternative check:
Build a 2-input truth table for both expressions. For all four input combinations of A and B, (A * B)' and A' + B' match exactly. A quick logic simulator test or simple gate-level substitution confirms the equivalence in practical circuits.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
a NAND and an OR gate with inverted inputs
Discussion & Comments