题目
Problem
There are 7 red counters, 3 blue counters and 2 yellow counters in a bag. Gina selects a counter at random from the bag and keeps it. If the counter is yellow she does not select any more counters. If the counter is not yellow she randomly selects a second counter from the bag.
(a) Complete the tree diagram.
(2)
Given that Gina has selected a yellow counter,
(b) find the probability that she has 2 counters.
(3)
解答
(a)
解法一
思路
展开
第一抽后如果不是 yellow,袋中会剩下 11 个 counters。第二抽的分母因此都是 11,并且要根据第一抽拿走了哪种颜色来调整分子。
答题过程
展开
For the first counter,
P(R)=127,P(B)=123,P(Y)=122.
If the first counter is red, then the remaining counters are 6R,3B,2Y, so
P(R∣R first)=116,P(B∣R first)=113,P(Y∣R first)=112.
If the first counter is blue, then the remaining counters are 7R,2B,2Y, so
P(R∣B first)=117,P(B∣B first)=112,P(Y∣B first)=112.
(b)
解法一
思路
展开
题目已经告诉我们“Gina selected a yellow counter”,所以这是条件概率。分母是所有出现 yellow 的情况;分子是“有两个 counters 且其中第二个是 yellow”的情况。
答题过程
展开
The probability that Gina selects a yellow counter is
P(Y)===122+127⋅112+123⋅11213222+13214+132613242.
The probability that Gina selects a yellow counter and has 2 counters is
P(Y and 2 counters)===127⋅112+123⋅11213214+132613220.
Therefore
P(2 counters∣Y)=1324213220=4220=2110.