Difficulty: Easy
Correct Answer: 5
Explanation:
Introduction / Context:
This digital logic question checks your understanding of minterms and coverage in a three-variable Boolean expression. Knowing how to count satisfying input combinations (minterms) is foundational for Karnaugh maps, simplification, and logic synthesis.
Given Data / Assumptions:
Concept / Approach:
A term A in an OR expression A + X covers all cases where A = 1 (regardless of B, C). The product BC contributes additional cases when A = 0 and both B and C are 1. We must avoid double counting overlaps.
Step-by-Step Solution:
Verification / Alternative check:
List explicitly: A = 1 with (B, C) ∈ {(0,0), (0,1), (1,0), (1,1)} → 4 minterms. Plus A = 0, B = 1, C = 1 → 1 minterm. No other A = 0 case works. Sum = 5.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments