retagged by
889 views
2 votes
2 votes
Three balls are to be randomly selected without replacement from an urn containing
20 balls numbered 1 through 20. If we bet that at least one of the balls that are
drawn has a number as large as or larger than 17, what is the probability that we
win the bet?
retagged by

2 Answers

Best answer
4 votes
4 votes

This question is from hypergeometric distribution basically which has the following features :

a) The populatin size which is also known sample space size is finite .

b) Objects are drawn without replacement i.e. once an object is drawn is not put back..

c) Hence probability of drawing each object varies unlike binomial distribution..

So here we have :

P(at least one ball value >= 17)       =  1 - P(all ball values <= 16)

                                                    =   1 - ( 16C3 /  20C3 )

                                                    =   1 - [ ( 16 * 15 * 14 ) / (20 * 19 * 18) ]

                                                    =   0.50877

                                                    =   0.509

Hence required probability              =   0.509

selected by
0 votes
0 votes
Atleast one of the balls larger than 1 = 1 - (None of the balls larger than 1)

                                                                  = 1-((16*15*14)/(20*19*18))

                                                                  =  0.508

Related questions

1 votes
1 votes
1 answer
1