I was watching a twitch stream the other day and the streamer was giving away his money based on a dice game. The game works as follows:
First, he rolls a 5 sided die to determine your initial starting money (from 1 to 5 dollars). From then on, you can either take the total money, or roll again. If you roll again, the value of the die will be added to your total money, unless you roll a 1 where you will lose it all.
He created a second game where you roll an 8 sided die with similar rules to the first game, except you lose all your money if you roll a 1 or an 8.
People in chat said that it was worse than the first game (since now you have a 75% chance to lose all your money instead of 80%), but there seems to be something intuitively wrong about it I can't explain.
I'm not a statistician, but if someone could point me towards some sort of way to figure out which game is better for the player it'd be much appreciated!
In the first case, if you have $x, your gain by playing is -x, 2, 3, 4, 5 with an average of (14-x) / 5 so you stop playing when x >= 14.
Second case your gain is -x, 2, 3, 4, 5, 6, 7, -x, average (27-2x) / 8, so again you stop playing with x >= 14.
You’d have to make a table with your expected outcome for each game to be sure.
Game 1:
x >= 14 -> x
x = 13 -> 0, 15, 16, 17, 18 average 13.2
x = 12 -> 0, 14, 15, 16, 17 average 12.4
x = 11 -> 0, 13.2, 14, 15, 16 average 11.64
and so on.
The probability of losing is higher in game 2, but if you win you win 4.5 on average instead of 3.5, and you start on average with 4.5 instead of 3, so you really need to create this table for the expected value.
An alternative was mentioned where your winnings are multiplied with the next number. Both variants have to stop when the banker runs out of money, say with a rule “when the calculated winning are larger than one billion, one billion is paid out and the game ends.
Or we could not optimise the number of dollars, but the benefit for the player. Getting one billion dollars or ten are basically the same benefit for me. Close enough that you wouldn’t risk losing the billion. Benefit grows linear with dollars only when the dollar value is within my normal means, say a year or a few years of my income.