Difficulty: Easy
Correct Answer: 2/5
Explanation:
Introduction / Context:
We need the probability that the chosen number is in the union of two sets: multiples of 3 and multiples of 7. Inclusion–exclusion prevents double counting when overlaps exist.
Given Data / Assumptions:
Concept / Approach:
Count = count(3) + count(7) − count(21). Probability = count / 20.
Step-by-Step Solution:
Count(3) = 6 (3,6,9,12,15,18).Count(7) = 2 (7,14).Overlap = 0; total favourable = 6 + 2 = 8.Probability = 8/20 = 2/5.
Verification / Alternative check:
Listing confirms 8 valid numbers; fraction reduces to 2/5.
Why Other Options Are Wrong:
1/2 would require 10 favourable numbers; 7/20 equals 7/20 = 0.35 (undercount).
Common Pitfalls:
Forgetting to apply inclusion–exclusion when overlaps are possible; here the overlap happens at 21 which is outside the range, so it is 0.
Final Answer:
2/5
Discussion & Comments