mersenneforum.org  

Go Back   mersenneforum.org > Fun Stuff > Puzzles

Reply
 
Thread Tools
Old 2015-04-16, 15:18   #1
sdbardwick
 
sdbardwick's Avatar
 
Aug 2002
North San Diego County

68510 Posts
Default Silly dicey problem

Against my better judgment, I've become involved in a discussion about probability elsewhere (no, it is not the Monty Hall problem) but it might be too counterintuitive for some to accept.

Scenario:
No trickery - each die is a standard six-sided cube, with each face numbered uniquely 1 to 6, and fair (not altered or loaded).
You need to determine the probability of each die in a pair of dice showing a 2, given certain information.


You throw two fair six-sided dice simultaneously so that each lands by itself in one of two separate boxes, labelled L and R. You cannot see into the boxes, but your partner can. Your partner then truthfully tells you that at least one of the die is showing a 2.

What are the odds that both of the cubes show a 2?

Please explain the process used to arrive at your answer.


I'll post my original response later, if required. I'm more interested in explaining why the incorrect answer is incorrect than anything else.

I come up with 1/11, others are vehemently supporting the more intuitive 1/6. I've done 3.6MM simulated rolls in Excel; the results support my answer.
sdbardwick is offline   Reply With Quote
Old 2015-04-16, 15:26   #2
retina
Undefined
 
retina's Avatar
 
"The unspeakable one"
Jun 2006
My evil lair

22×1,549 Posts
Default

Of the 36 possible permutations only 11 of those have a 2. And only one of those 11 is 2-2. And since all 11 have the same probability of occurring then the answer is simply 1 in 11.
retina is offline   Reply With Quote
Old 2015-04-16, 15:45   #3
sdbardwick
 
sdbardwick's Avatar
 
Aug 2002
North San Diego County

2AD16 Posts
Default

Thanks for the response, Retina!

I'll check back later and post my (longish) original reply.

As far as I can tell, the 1/6 group reasoning is "Well, we know one of the die is a 2, so 1/2 of the possible non-2,2 are impossible, and can be excluded." My response will probably be "No, because you don't KNOW which are impossible, they COULD be possible, and therefore must be included," but I'm not sure such a explanation-free statement will move things forward.

Yes, I know this can/will turn into the famous XKCD comic...
sdbardwick is offline   Reply With Quote
Old 2015-04-16, 16:20   #4
axn
 
axn's Avatar
 
Jun 2003

22·3·421 Posts
Default

Given that there is atleast one 2, there are 11 possible states: (L=2, R=non-2), (L=non-2, R=2), and (L=2, R=2). Out of which only one is the target state. So 1:11. Or alternatively, we know it is NOT one of the 25 states (L=non-2, R=non-2).
axn is online now   Reply With Quote
Old 2015-04-16, 16:28   #5
TheMawn
 
TheMawn's Avatar
 
May 2013
East. Always East.

11·157 Posts
Default

The 1/6 thing is a mistake taken from mis-understanding the problem statement. If your partner had instead said: "The die in the LEFT box is a 2," then there is in fact a 1/6 chance of them both being 2.

Interesting side-question: If knowing which box has the 2 in it gives us a 1/6 chance and not knowing gives us a 1/11 chance, why does knowing which box has the 2 in it increase the likelihood of having a pair of 2's?


EDIT: Screw it. No spoilers. If someone wants to solve it on their own they haven't read all the way down here. Even if they have, I'm not explaining how 1/11 is correct...

Last fiddled with by TheMawn on 2015-04-16 at 16:31
TheMawn is offline   Reply With Quote
Old 2015-04-16, 16:35   #6
TheMawn
 
TheMawn's Avatar
 
May 2013
East. Always East.

172710 Posts
Default

Questions involving the probability of A given B always need to be read more carefully. People either get too focused on the probability of A on its own or misunderstand what exactly B means. The Monty Hall problem is one of the best traps for the second one.
TheMawn is offline   Reply With Quote
Old 2015-04-16, 17:14   #7
sdbardwick
 
sdbardwick's Avatar
 
Aug 2002
North San Diego County

12558 Posts
Default

Original post is below the hashes with typo correction and context added to coin flips. I was walking myself through this, which is why it starts with coin flips. I was hoping that it would illustrate how specific information affects the calculations.
########################

I wonder if we should rename the dice problem Schroedinger's Dice.

My rehash:

Toss two fair coins simultaneously so that each one lands by itself in one of two separate boxes, labelled L and R. You cannot see into the boxes, but your partner can. He will truthfully tell you information. [You want to know the likelihood of HH.]

Before your partner says anything, the possible results are:
Code:
___L___|___R___
   H   |   H
   H   |   T
   T   |   H
   T   |   T
(or HH HT TH TT for short)

Probability of HH is 1/4 with no other information.

Partner says that one of the coins is H. Now the possible results are:
Code:
___L___|___R___
   H   |   H
   H   |   T
   T   |   H
(HH HT TH)

Now the probability of HH is 1/3, since there cannot be two Ts.

New toss, but now your partner says the L coin is H, leaving these possible results:
Code:
___L___|___R___
   H   |   H
   H   |   T
(HH HT)
Now the probability of HH is 1/2.


So what if we expand this to the two dice problem. Same setup - two fair dice are thrown simultaneously so that each lands by itself in one of two separate boxes, labelled L and R. You cannot see into the boxes, but your partner can.

Before your partner says anything, the possible results are:
Code:
___L___|___R___||COUNT||
   1   |   1      1
   1   |   2      2
   1   |   3      3
   1   |   4      4
   1   |   5      5
   1   |   6      6
   2   |   1      7
   2   |   2      8
   2   |   3      9
   2   |   4      10
   2   |   5      11
   2   |   6      12
   3   |   1      13
   3   |   2      14
   3   |   3      15
   3   |   4      16
   3   |   5      17
   3   |   6      18
   4   |   1      19
   4   |   2      20
   4   |   3      21
   4   |   4      22
   4   |   5      23
   4   |   6      24
   5   |   1      25
   5   |   2      26
   5   |   3      27
   5   |   4      28
   5   |   5      29
   5   |   6      30
   6   |   1      31
   6   |   2      32
   6   |   3      33
   6   |   4      34
   6   |   5      35
   6   |   6      36
Only one combination out of 36 with L2 R2, so 1/36.

Then your partner announces that the L die is a 2.
Cool! Remove all combinations where the L die is not a 2:
Code:
___L___|___R___||COUNT||
   2   |   1      1
   2   |   2      2
   2   |   3      3
   2   |   4      4
   2   |   5      5
   2   |   6      6
Now there is one combination out of 6 with L2 R2, so 1/6.

But wait! Your partner screwed up! Due to the arbitrary rules of the game, you cannot be told which die contains a two, only that A two has been thrown. So the throws will be repeated, this time with an admonishment to your partner.
A few throws later, your partner announces at least one of the die shows a two. Now what is the probability of BOTH dice showing a two?
Based on your partner's information, you can eliminate all combinations without at least one 2:
Code:
___L___|___R___||COUNT||
   1   |   2      1
   2   |   1      2
   2   |   2      3
   2   |   3      4
   2   |   4      5
   2   |   5      6
   2   |   6      7
   3   |   2      8
   4   |   2      9
   5   |   2      10
   6   |   2      11
Now there is one combination out of 11 with L2 R2 after being told that at least one of the die showed a 2, so 1/11.

Note- Results of 3.6MM (10 runs of 360,000) rolls in Excel:
Code:
		Any two	        Both Two   both/any      ideal 1/11
Totals		1,099,165	100,140	  0.091105521     0.09090909
sdbardwick is offline   Reply With Quote
Old 2015-04-16, 18:09   #8
wblipp
 
wblipp's Avatar
 
"William"
May 2003
New Haven

2×7×132 Posts
Default

In my experience, nobody still arguing is likely to be convinced. They will fall into three categories:
1. Those so cocksure of their answer that they don't think about, and probably don't even read, your explanation.
2. Those so mathematically naive they don't really understand the question.
3. Trolls.

If it were me, I would post the clearest explanation I could compose and then withdraw from the discussion. My explanation would be the following diagram. It says the same thing others on this thread have said in words, but a picture has a small chance of reaching some additional people by accessing a different way of thinking.
Code:
   1 2 3 4 5 6
  +-----------
1 |  X
2 |X X X X X X
3 |  X
4 |  X
5 |  X
6 |  X
I know some wonderful and clever ideas about how to engage the first group. None of these ideas has ever worked for me on the Monty Hall problem, so they must be wonderful and clever in my mind, not in the real world.
wblipp is offline   Reply With Quote
Old 2015-04-16, 18:29   #9
sdbardwick
 
sdbardwick's Avatar
 
Aug 2002
North San Diego County

68510 Posts
Default

William, others on the original thread have posted that exact same figure, as well as colorful variations.

It didn't help.

I've given up trying to convince the non-believers (appellation seems appropriate, since they will not accept mathematics or simulations as proof), and now am more interested in exploring the thought processes that get them to their conclusion. So far, the processes seem to start and stop at "there is one unknown six-sided die, so it must be 1/6", but I may pursue it a bit more.

Thanks to you and everybody else for taking the time to respond to this trivial matter!

P.S. Since my involvement started on a gambling website, now I need to figure out how to monetize their erroneous conclusions. I'm thinking that I should make a game like we roll dice, you pay me $1 for every 2, and I pay you $7 for every pair of 2s (rolls without any 2s are ignored).

Last fiddled with by sdbardwick on 2015-04-16 at 18:33
sdbardwick is offline   Reply With Quote
Old 2015-04-16, 18:41   #10
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

23×3×5×72 Posts
Default

A slight modification to the question:

You throw three fair six-sided dice simultaneously so that each lands by itself in one of three separate boxes. You cannot see into the boxes, but your partner can. Your partner then truthfully tells you that at least two of the dice are showing a 2.

What are the odds that all three of the cubes show a 2?

Please explain the process used to arrive at your answer.

Can anyone work out a formula for the generalization to n dice with n-1 known to be showing a 2 or better still with x known to be showing a 2?

Last fiddled with by henryzz on 2015-04-16 at 18:42
henryzz is offline   Reply With Quote
Old 2015-04-16, 19:04   #11
VBCurtis
 
VBCurtis's Avatar
 
"Curtis"
Feb 2005
Riverside, CA

4,861 Posts
Default

Quote:
Originally Posted by sdbardwick View Post
P.S. Since my involvement started on a gambling website, now I need to figure out how to monetize their erroneous conclusions. I'm thinking that I should make a game like we roll dice, you pay me $1 for every 2, and I pay you $7 for every pair of 2s (rolls without any 2s are ignored).
This. Put your money where your math is. Offering 8 to 1 odds is clearly +EV to you both. :)

Last fiddled with by VBCurtis on 2015-04-16 at 19:04
VBCurtis is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Do you like silly tests? jasong jasong 8 2016-05-27 05:29
A bit silly question jlsandin Information & Answers 2 2015-11-21 16:42
Silly patents ewmayer Lounge 28 2013-03-28 20:43
A Silly Prime Question davar55 Puzzles 76 2011-04-15 14:34
Silly project idea that might be fun jasong jasong 2 2009-03-19 22:59

All times are UTC. The time now is 03:29.


Sat Jul 17 03:29:35 UTC 2021 up 50 days, 1:16, 1 user, load averages: 1.18, 1.49, 1.44

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.