Difficulty: Easy
Correct Answer: SOP logic (sum of products)
Explanation:
Introduction / Context:
Many standard-cell libraries include complex gates like AOI (AND–OR–INVERT) and OAI (OR–AND–INVERT) because they reduce transistor count and delay compared to building the same logic strictly from basic gates. Recognizing which canonical form each complex gate targets helps map minimized expressions directly to efficient hardware.
Given Data / Assumptions:
Concept / Approach:
A two-level SOP is of the form F = Σ(products) = (A*B) + (C*D) + … . AOI realizes the complemented SOP: F' = [(A*B) + (C*D) + …]'. In CMOS, AOI gates can be highly efficient because the pull-down (or pull-up) networks implement the inverted sum directly with fewer transistors. By placing or removing bubbles (De Morgan transformations), an AOI gate effectively implements the intended SOP with minimal staging, often as a NAND–NAND equivalent.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments