Difficulty: Easy
Correct Answer: LM + MNO + MPQ
Explanation:
Introduction / Context:
Sum-of-products (SOP) form is widely used in digital design because it maps naturally to two-level AND–OR implementations and to programmable logic arrays. Converting any given Boolean expression into SOP ensures that each term is a product (AND) of literals, summed (ORed) together.
Given Data / Assumptions:
Concept / Approach:
To obtain SOP, first expand any parentheses using the distributive property: X(Y + Z) = XY + XZ. Then collect the resulting product terms. Each product term is an AND of literals; the final expression is an OR of these products.
Step-by-Step Solution:
Verification / Alternative check:
Each term is a product of literals (LM, MNO, MPQ). There are no sums inside products, so it satisfies SOP. A quick truth-table spot check on a few input combinations confirms functional equivalence before and after expansion.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting to distribute to all terms; accidentally multiplying all symbols together; or incorrectly simplifying by removing necessary literals. Always keep track of each literal during distribution.
Final Answer:
LM + MNO + MPQ
Discussion & Comments