Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:Being able to recognize canonical forms accelerates simplification and hardware mapping. SOP (sum-of-products) means an OR (sum) of one or more product terms, where each product term is an AND of literals (variables or their complements).
Given Data / Assumptions:
Concept / Approach:Check each term: A'B is a product (A' AND B). AB' is also a product (A AND B'). The entire expression is the sum (OR) of these two products. Therefore it fits SOP.
Step-by-Step Solution:
Identify product terms: P1 = A'B; P2 = AB'.Identify the outer operator: OR, combining P1 and P2.Conclude: F = P1 + P2 is in SOP form.Verification / Alternative check:Attempt POS recognition: POS requires a product (AND) of sum terms like (A + B)(A' + B'); our expression does not match that template, confirming SOP classification.
Why Other Options Are Wrong:
Incorrect: The structure clearly matches SOP.It is POS: Incorrect operator ordering.Neither SOP nor POS: It is a standard SOP example (an XOR-like form).Common Pitfalls:Confusing SOP with POS; overlooking that literals can be complemented and still be part of valid product terms; assuming canonical form must include all variables in every term (not required for non-canonical SOP).
Final Answer:Correct
Discussion & Comments