Difficulty: Easy
Correct Answer: A * B' * C * D'
Explanation:
Introduction / Context:
This item checks your ability to translate a binary assignment into a minterm (product) for a specified variable order. In standard SOP, each minterm includes all variables either complemented or uncomplemented to represent one unique row of the truth table.
Given Data / Assumptions:
Concept / Approach:
For a variable equal to 1, use the variable uncomplemented; for 0, use its complement. Combine all variables with * to form the minterm.
Step-by-Step Solution:
Verification / Alternative check:
This corresponds to minterm m10 (if A is the MSB). Expanding to decimal index confirms consistency with A B C D = 1 0 1 0.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting the stated variable order or flipping complement rules.
Final Answer:
A * B' * C * D'
Discussion & Comments