Difficulty: Easy
Correct Answer: 32
Explanation:
Introduction / Context:
This is a sequential-partition problem: first select car owners, then among the remainder select motorcycle owners. The groups are disjoint by construction (motorcycle selection happens after removing car-owning families).
Given Data / Assumptions:
Concept / Approach:
Add the two disjoint sets of vehicle owners and subtract from the total to get the count with no vehicle.
Step-by-Step Solution:
Total with a vehicle = 16 + 32 = 48No-vehicle families = 80 − 48 = 32
Verification / Alternative check:
Proportions check: 32/80 = 40% have no vehicles, consistent with the sequential selection.
Why Other Options Are Wrong:
30 and 36 misapply percentages; 23 is unrelated to 80.
Common Pitfalls:
Taking 50% of the original 80 instead of the remainder (64).
Final Answer:
32
Discussion & Comments