We won't do your homework for you, but will help you to figure out how to do
it for yourself.
If this is not homework, you should remember that lotteries, etc. are a tax
on the mathematically challenged. In general, they are designed to raise
money, and hence by definition have a negative expected return for players.
The more you play, the more (on average) you will lose. People continue to
play because someone will win, and hope springs eternal ...
Your setup pays out just over half of what it takes in, so if you bought all
of the tickets, you would be certain of winning everything, but you woul also
end up $1,125,000 poorer than when you started.
For probability calculations, see Help on HYPGEOMDIST. There are 500,000
tickets and 734 prizes. The probability of winning nothing with 50 tickets
is then =HYPGEOMDIST(0,50,734,500000), i.e. 93% chance that you are simply
throwing away $250.
For the specific events that you are concerned with, you will adjust the
first and third agruments appropriately, and may have to sum several
probabilities. For instance the probability of winning at least one first
prize is
=HYPGEOMDIST(1,50,2,500000)+HYPGEOMDIST(2,50,2,500000)
or by the logic that winning at least one first prize is the alternative to
not winning a first prize, you could calculate
=1-HYPGEOMDIST(0,50,2,500000)
You may perfer to download
http://members.aol.com/iandjmsmith/Examples.xls
and use its cdf_hypergeometric function instead of summing things.
Good luck with your assignment,
Jerry
"Steve" wrote:
> I need help designing a spreadsheet that can be used to figure the
> probability and odds of winning this raffle. Here is the situation:
>
> 1) there will only be 500,000 tickets sold.
> 2) there will be 2 first place prizes of $500,000.00
> 3) there will be 2 second place prizes of $25,000.00
> 4) there will be 30 third place prizes of $5,000.00
> 5) there will be 700 fourth place prizes of $250.00
> 6) Tickets cost $5.00
>
> If I were to buy 50 tickets spending $250.00 (the amount of the
> smallest prize)...
>
> 1) what are my odds of winning atleast one of the first place prizes?
> 2) what are my odds of winning both of the first place prizes?
> 3) what are my odds of winning atleast one of the second place
> prizes?
> 4) what are my odds of winning both of the second place prizes?
> 5) what are my odds of winning atleast one of the third place prizes?
> 6) what are my odds of winning more than one of the third place
> prizes?
> 7) what are my odds of winning atleast one of the fourth place
> prizes?
> 8) what are my odds of winning more than one of the fourth place
> prizes?
>
> Similarly...
>
> 9) what is the probability that I will win atleast one first place
> prizes?
> 10) what is the probability that I will win both first place prizes?
> 11) what is the probability that I will win atleast one second place
> prizes?
> 12) what is the probability that I will win both second place prizes?
> 13) what is the probability that I will win atleast one third place
> prize?
> 14) what is the probability that I will win more than one third place
> prize?
> 15) what is the probability that I will win atleast one fourth place
> prize?
> 16) what is the probability that I will win more than one fourth place
> prize?
>
> What I am looking for is the explanation of the formula(s) required to
> answer
> the questions above.
>
> Can anybody help?
>
>