|
|
#1 |
|
Member [03%]
|
Problem ("Coin-Tossing"): Assume three men, Mr. X, Mr. Y and Mr. Z, arrive with amounts of coins, x, y and z, to play a game. The rules of the game are as follows:
(1) In each round, each player tosses one coin. In the case of a tie (HHH, TTT) coins are retossed. Repeat until a toss yields not a tie (HHT, HTH, HTT, THH, THT, TTH). (2) The odd player out (e.g. the "T" in HHT) keeps all 3 coins to himself from that round. Given values x, y and z, what is the average/expected number of tosses before the first man goes broke? Note that we ask for "tosses" and not "rounds," as multiple tosses can occur within rounds to break ties. |
|
|
|
|
|
|
|
#2 |
|
Member [28%]
|
So the number of coins each man has to begin with doesn't matter?
|
|
|
|
|
|
#3 |
|
Core Member [288%]
|
Can we assume that either X, Y, or Z is > 2? Or maybe that all of them are?
For all values = 2, the answer is 100% that one man will be out in the 2nd round. (Yes, I know this isn't tosses...) For all value = 1, the answer is 100% that one man will be out in the 1st round. Beyond two, the game may go on more than two rounds. |
|
|
|
|
|
#4 |
|
Member [28%]
|
All combinations:
HHH THH HTH HHT TTH THT HTT TTT So there are 8 combinations and 2 in which there needs to be a retoss. That means that 1/4th of the time there will be at least one more toss per round, 1/16 of a chance that there will be at least three tosses, 1/64 of a chance that there will be at least four tosses, 1/256 chance that there will be at least five tosses... |
|
|
|
|
|
#5 | ||||||
|
Member [03%]
|
Well, it matters in as much as your final expression for the expected number of tosses will contain x, y and z..variables for the numbers of coins.
Assume that they could be any postive integer amounts of coins, ya. Just know that your final expression will show that the above two cases hold true for verification. |
||||||
|
|
|
|
|
#6 |
|
Core Member [288%]
|
Let's see...
Sum(x->oo) 1/4^x = .... |
|
|
|
|
|
#7 |
|
Member [28%]
|
(x+y)/2z+(x+z)/2y+(y+z)/2x= R
R+ [1 sigma R 1/4^n] |
|
|
|
|
|
#8 |
|
Core Member [412%]
|
This is a non-trivial problem, but is amenable to a number of avenues of attack. For the time being, I am observing....
|
|
|
|
|
|
#9 |
|
Veteran Member [85%]
MBTI: INTP
Join Date: Apr 2009
Posts: 3,414
|
My initial look is numerical:
(Indenting on VBulletin, ugh...) Some data (I will probably write an additional script to actually run through in a predictable way later and then attempt to do an interpolation with a large data set, but at the moment I've already procrastinated way too much): At a glance it does not seem to be linear in the inputs, which, while expected, makes the problem a lot harder. |
|
|
|
|
|
#10 |
|
Core Member [412%]
|
Approximate empiricial results: the three numbers are the starting coin count for each guy, and the the number on the right is the average number of tosses until the first bankruptcy of some player. Each value is based on approximatley 100,000 games. I seem to be getting the same results as Latro, e.g., see the first entry:
tosses(10,20,30) = 138 tosses(1,1,1) = 1.33 tosses(1,1,2) = 1.33 tosses(1,2,2) = 1.777 tosses(1,2,3) = 2 tosses(2,2,2) = 2.66 tosses(3,3,3) = 5.16 tosses(4,4,4) = 8.57 tosses(5,5,5) = 12.83 tosses(6,6,6) = 18 tosses(7,7,7) = 24.25 tosses(8,8,8) = 31.25 tosses(9,9,9) = 38.91 tosses(100,100,100) = 4450. tosses(1024,1024,1024) = 466666 tosses(1,1000,1000) = 666 tosses(1,2000,2000) = 1333 tosses(1,3000,3000) = 1666 tosses(10,5,5) = 18.5 tosses(50,50,50) = 1133 tosses(100,50,50) = 1685 tosses(10,9,8) = 38.42 tosses(10,10,1) = 7 tosses(10,10,2) = 13.28 tosses(10,10,3) = 19 tosses(10,10,4) = 24.25 tosses(10,10,5) = 29 tosses(10,10,6) = 33.25 tosses(10,10,7) = 37.25 tosses(10,10,8) = 41 tosses(10,10,9) = 44.42 tosses(10,10,10) = 47.57 |
|
|
|
|
|
#11 |
|
Member [21%]
|
[HIDE="answer"]This seems pretty easy to tackle using a formula for the expected value of a geometric distribution, where a tie in any round is defined as "success"(p=.25) and anything other than a tie is a "failure"(q=.75).
The formula for the mean is 1/(1-p). So, 1.333 tosses.[/HIDE] ...but montey said it's non-trivial, so I'm probably not correctly understanding the problem. [edit] yeah...I misunderstood alright. my solution only works if they all bring only one coin. |
|
|
|
|
|
#12 | |||
|
Member [03%]
|
This is problem comes with a difficulty rating of: ( |
|||
|
|
|
|
|
#13 |
|
Veteran Member [85%]
MBTI: INTP
Join Date: Apr 2009
Posts: 3,414
|
My current efforts:
|
|
|
|
![]() |
| Tags |
| math |
| Thread Tools | |
|
|