a.) How many tickets do you need to buy in order to have a 1% chance of winning any prize?
There are M = 20+5+5+2+1 = 33 prize tickets at all.
P = (C(9878,n)-C(9878-33,n))/C(9878,n) = 0.01; here n is the number of bought tickets.
We can find n out of this formula by enumeration. We see that
(C(9878,3)-C(9878-33,3))/C(9878,3) ≈ 0.01,
so we need to buy 3 tickets to have a 1% chance of winning any prize.
b.) if you buy 20 tickets, what is the probability that you will win a trip to Vegas or a car (or both)?
The probability that you will win a trip to Vegas:
P1 = (C(9878,20)-C(9878-2,20))/C(9878,20), since there are two trips to Vegas.
The probability that you will win a car:
P2 = (C(9878,20)-C(9878-1,20))/C(9878,20), since there is only one car.
So, the probability that you will win a trip to Vegas or a car (or both) is
P = P1 + P2 = (2*C(9878,20)-C(9878-2,20)-C(9878-1,20))/C(9878,20) ≈ 0.6%.
Comments
Leave a comment