odd_major
Bunuel
Official Solution:
A committee of 3 people must be formed randomly from a group of 6 individuals. If Tom and Mary are both part of this group of 6, what is the probability that Tom will be chosen for the committee, while Mary will not?
A. \(\frac{1}{10}\)
B. \(\frac{1}{5}\)
C. \(\frac{3}{10}\)
D. \(\frac{2}{5}\)
E. \(\frac{1}{2}\)
We need to find the probability of having Tom (T), not Mary (NM), and another person who is not Mary (NM) on the committee (T, NM, NM).
The probability of this combination (T, NM, NM) can be calculated as follows:
\(P(T, NM, NM)=3*\frac{1}{6} * \frac{4}{5} * \frac{3}{4}=\frac{3}{10}\)
We multiply by 3 because the (T, NM, NM) scenario can occur in 3 different ways: (T, NM, NM), (NM, T, NM), or (NM, NM, T).
Answer: C
Hi
Bunuel,
I generally get stuck in such questions. If I take the P&C route of calculating the answer to this question, I can quickly get a 3/10.
However, when I take the probability-based approach (like the one you shared in the OA), I get 1/10.
Since the committee is not an ordered set, there is no difference between one arrangement and another; therefore, there shouldn't be any need to multiply by 3 in the probability. In my opinion, (T, NM, NM), (NM, T, NM), or (NM, NM, T) are all the same thing, per the question. Using this, I get a 1/10.
However, confusingly, if I apply the same logic and solve it via the P&C way: total ways -> 6C3, favourable ways -> 4C2, I quickly get 3/10.
Could you please help me understand where I always go wrong with such questions?
You can think about this in two ways:
1. When selecting three people one by one, you can get T, NM, NM in three different ways: {T, NM, NM}; {NM, T, NM}; or {NM, NM, T}. So, you need to account for all these possibilities.
2. The denominator, 6 * 5 * 4, counts ordered triplets (all possible sequences). To stay consistent, the numerator must also account for order. If order were not considered, the denominator would be 6C3 = 20, instead of 6 * 5 * 4 = 120, and the numerator would be 4C2 = 6, instead of 3 * 4 * 3 = 36.
Generally, the key is to ensure consistency between the numerator and the denominator. If one uses ordered groups, the other should as well, and vice versa. In the combinations approach (4C2 / 6C3), both the numerator and the denominator represent unordered groups, maintaining consistency. Similarly, in the probability approach, both the numerator and the denominator account for ordered groups, which also keeps the calculation consistent.
Hope it helps.