Author |
Topic: Cereal Games (Read 856 times) |
|
Benoit_Mandelbrot
Junior Member
Almost doesn't count.
Gender:
Posts: 133
|
|
Cereal Games
« on: Jan 22nd, 2004, 10:18am » |
Quote Modify
|
A cereal manufacturer inserts 5 games randomly into the boxes. Each box contains one of the 5 games. You purchase 12 boxes, so what is the chance that you will have the 5 games?
|
« Last Edit: Jan 22nd, 2004, 11:34am by Benoit_Mandelbrot » |
IP Logged |
Because of modulo, different bases, and significant digits, all numbers equal each other!
|
|
|
towr
wu::riddles Moderator Uberpuzzler
Some people are average, some are just mean.
Gender:
Posts: 13730
|
|
Re: Cereal Games
« Reply #1 on: Jan 22nd, 2004, 11:10am » |
Quote Modify
|
::1324224/1953125 but there must be some better method than the quadrupple sum I used.. ::
|
|
IP Logged |
Wikipedia, Google, Mathworld, Integer sequence DB
|
|
|
Dudidu
Full Member
Posts: 227
|
|
Re: Cereal Games
« Reply #2 on: Jan 22nd, 2004, 2:01pm » |
Quote Modify
|
I get somthing else... 330/1820 [approx] 0.18131 ... I hope it's correct.
|
« Last Edit: Jan 22nd, 2004, 2:02pm by Dudidu » |
IP Logged |
|
|
|
towr
wu::riddles Moderator Uberpuzzler
Some people are average, some are just mean.
Gender:
Posts: 13730
|
|
Re: Cereal Games
« Reply #3 on: Jan 22nd, 2004, 2:28pm » |
Quote Modify
|
It's not.. I also made a simulation with 5k runs, and it gave about 2/3. So I'm pretty sure my answer is correct, or at least less far from being wrong ::The chance that there's at least one game missing is slightly less than 5*(4/5)^12[approx]0.3436 (there is some overlap in the five cases where one game is certainly not in, because another might be missing as well) Simply put we have 1 - [sum]i=14(-1)i+1Choose(5,i) [(5-i)/5]12 Which is that easier method I was looking for.. hmm.. even more simply that's: [sum]i=04(-1)iChoose(5,i) [(5-i)/5]12 ::
|
« Last Edit: Jan 22nd, 2004, 2:38pm by towr » |
IP Logged |
Wikipedia, Google, Mathworld, Integer sequence DB
|
|
|
Dudidu
Full Member
Posts: 227
|
|
Re: Cereal Games
« Reply #4 on: Jan 22nd, 2004, 2:49pm » |
Quote Modify
|
on Jan 22nd, 2004, 2:28pm, towr wrote:It's not.. I also made a simulation with 5k runs... |
| towr hi, I know that it will be hard to argue with a simulation but here is my reasoning (maybe you will find them correct): Lets say that the number of the 5 games in the 12 boxs are x1, x2... x5 (each of them is non-negative). Now, [sum]i=1 to 5 xi = 12. The number of ways to choose the xi's are ( 416 ) = 1820. However, we want to have at least one instance from each game, thus, we want that each xi [ge] 1 which can equivalently be written as [sum]i=1 to 5 xi = 7. The number of ways to choose the xi's are ( 411) = 330. [to] we get 330 / 1820. What do you say ?
|
|
IP Logged |
|
|
|
towr
wu::riddles Moderator Uberpuzzler
Some people are average, some are just mean.
Gender:
Posts: 13730
|
|
Re: Cereal Games
« Reply #5 on: Jan 22nd, 2004, 3:21pm » |
Quote Modify
|
on Jan 22nd, 2004, 2:49pm, Dudidu wrote: towr hi, I know that it will be hard to argue with a simulation but |
| but nothing I might also have slipped something by you in editing my post.. Quote:I suppose the simplest way is to apply your method to a simpler example. Let's take two prizes, and two boxes. there are C(3, 1)=3 possible ways to choose x1 and x2 Now since there must be one of each, there is C(1,1)=1 way to get the desired outcome. So you would say here that the chance is 1/3 of getting both prizes if you have two boxes. But I'm confident you see that once you have the first box and the first prize, there is a 1 in 2 chance the next box will be the other prize (and so the total probability is also 1/2). The problem is that the ways in which you can get the different tuples of xi's aren't equally likely. Back to the original problem. Suppose the xi's are a,b,c,d,e (adding to 12 of course) then the probability this contributes is 12!/(a!b!c!d!e!) * (1/5)12 You'll see this generally won't be the same for different tuples (a,b,c,d,e) unless these tuples are permutations of each other..
|
« Last Edit: Jan 23rd, 2004, 1:01am by towr » |
IP Logged |
Wikipedia, Google, Mathworld, Integer sequence DB
|
|
|
ThudnBlunder
wu::riddles Moderator Uberpuzzler
The dewdrop slides into the shining Sea
Gender:
Posts: 4489
|
|
Re: Cereal Games
« Reply #6 on: Jan 22nd, 2004, 4:38pm » |
Quote Modify
|
Quote: With 12 boxes and just 5 games, don't you think a 1 in 6 chance seems a bit low? I get the same as towr (but I wouldn't say it's Easy). The number of ways of getting all 5 games in 12 cereal boxes is the same as the number of ways of partitioning 12 elements into 5 non-empty sets. This number is given by S{12,5}, where S{n,k} is a Stirling Number of the Second Kind. And the 5 games can be permuted in 5! ways. Hence total number of successes = S{12,5}*5! Total number of ways of collecting 12 games = 512 Hence probability = S{12,5}*5!/512 = 1379400*120/244140625 = 0.678002688... Let F(n,k) be the corresponding probability with n boxes and k games (n [smiley=eqslantgtr.gif] k [smiley=eqslantgtr.gif] 1). Then F(n,k) = F(n-1,k) + [(1 - (1/k))n-1 * F(n-1,k-1)] and number of successes = i=k-1[smiley=sum.gif]i=0(-1)i * C(k,i) * (k-i)n
|
« Last Edit: Jan 24th, 2004, 6:18am by ThudnBlunder » |
IP Logged |
THE MEEK SHALL INHERIT THE EARTH.....................................................................er, if that's all right with the rest of you.
|
|
|
Benoit_Mandelbrot
Junior Member
Almost doesn't count.
Gender:
Posts: 133
|
|
Re: Cereal Games
« Reply #7 on: Jan 23rd, 2004, 9:02am » |
Quote Modify
|
The correct answer is 33/182, but my friend won't tell me how it is. I got this riddle from a friend. I'm not exactly sure how this is.
|
|
IP Logged |
Because of modulo, different bases, and significant digits, all numbers equal each other!
|
|
|
towr
wu::riddles Moderator Uberpuzzler
Some people are average, some are just mean.
Gender:
Posts: 13730
|
|
Re: Cereal Games
« Reply #8 on: Jan 23rd, 2004, 10:13am » |
Quote Modify
|
on Jan 23rd, 2004, 9:02am, Benoit_Mandelbrot wrote:The correct answer is 33/182, but my friend won't tell me how it is. I got this riddle from a friend. I'm not exactly sure how this is. |
| That so is not the correct answer.. You can easily enough look at every case, 5^12 isn't all that much.. I suggest your friend tries it..
|
|
IP Logged |
Wikipedia, Google, Mathworld, Integer sequence DB
|
|
|
ThudnBlunder
wu::riddles Moderator Uberpuzzler
The dewdrop slides into the shining Sea
Gender:
Posts: 4489
|
|
Re: Cereal Games
« Reply #9 on: Jan 23rd, 2004, 10:16am » |
Quote Modify
|
Quote:The correct answer is......I got this riddle from a friend. |
| Your friend must have got the puzzle from Dudidu. This puzzle is a variant of the Coupon Collector problem and the answer is a 'well-known' result in combinatorics. Have you tried using the recurrence relation? (I derived it myself, so it must be OK!) See The Art of Computer Programming by Knuth. Harder puzzle: To which question is 33/182 the correct answer?
|
« Last Edit: Jan 24th, 2004, 6:33am by ThudnBlunder » |
IP Logged |
THE MEEK SHALL INHERIT THE EARTH.....................................................................er, if that's all right with the rest of you.
|
|
|
Sameer
Uberpuzzler
Pie = pi * e
Gender:
Posts: 1261
|
|
Re: Cereal Games
« Reply #10 on: Jan 23rd, 2004, 10:51am » |
Quote Modify
|
on Jan 23rd, 2004, 10:16am, THUDandBLUNDER wrote: Your friend must have got the puzzle from Dudidu. |
| LOL on Jan 23rd, 2004, 10:16am, THUDandBLUNDER wrote: Harder puzzle: To which question is 33/182 the correct answer? |
| What is the relative prime form of 66/364?
|
|
IP Logged |
"Obvious" is the most dangerous word in mathematics. --Bell, Eric Temple
Proof is an idol before which the mathematician tortures himself. Sir Arthur Eddington, quoted in Bridges to Infinity
|
|
|
|