Simple Die Game: Win by Rolling 1-5 Before 6 - Odds of Winning?

  • Context: High School 
  • Thread starter Thread starter mathman
  • Start date Start date
  • Tags Tags
    Game
Click For Summary

Discussion Overview

The discussion revolves around the probability of winning a die game where a player rolls a die repeatedly until all numbers from 1 to 5 appear at least once, before rolling a 6. Participants explore different approaches to calculate the odds of winning this game.

Discussion Character

  • Exploratory, Mathematical reasoning, Debate/contested

Main Points Raised

  • One participant describes the game mechanics and asks for the odds of winning, noting that they have developed three different approaches to the problem.
  • Another participant suggests that since one number must come up last, the odds of winning are 1 in 6, as any of the numbers could be the last one seen.
  • Some participants indicate that their approaches yield the same result regarding the odds of winning.
  • One participant shares their experimental results, approximating the odds to be close to 0.166 after 100,000 throws.
  • A different participant proposes a simplified proof by focusing only on throws that result in new numbers, calculating the probability of not rolling a 6 after five throws as 5!/6! = 1/6.

Areas of Agreement / Disagreement

Participants generally agree that different approaches yield similar results, but there is no consensus on the definitive odds of winning, as various methods are still being explored.

Contextual Notes

Some assumptions about the independence of die rolls and the definition of winning conditions may not be fully articulated, and the discussion does not resolve the exact probabilities involved.

Who May Find This Useful

Readers interested in probability theory, game mechanics, or mathematical reasoning related to dice games may find this discussion relevant.

mathman
Science Advisor
Homework Helper
Messages
8,130
Reaction score
575
TL;DR
Throw die repeatedly
Game: throw die repeatedly until all numbers 1-5 show up ay least once (win), before a six shows up on the way (lose). Odds of winning?

Note: Someone posted this on another forum and I was able to come up with three different approaches (two very similar). Try to get them.
 
Physics news on Phys.org
Trivially, some number has to come up last. Keep rolling until 5 of the 6 numbers have been seen.
Odds are identical that any number is that last one seen, so 1 in 6 odds that it's a 6 and you win.

Given the other approaches, do any give different odds?

This game has effectively been played for years in the Price is Right game show. The standard line is that with each roll, 'the odds are never against you', which of course they are overall.
 
  • Like
Likes   Reactions: FactChecker, etotheipi and PeroK
Other approaches come up with same result.
 
Not a proof, but I tried
Python:
import random
count = 0
n = 100000
thrown = [0,0,0,0,0,0]
current = 0

for i in range(n):
    while(current!=5):
        current = random.randint(0, 5)
        thrown[current] = 1
        if(current==5):
            num = int("".join(str(x) for x in thrown), 2)
            if(num == 63):
                count+=1
    current = 0
    for i in range(0, len(thrown)):
        thrown[i] = 0

print(count/n)
and it gets pretty close to 0.166 with 100,000 throws.
 
  • Like
Likes   Reactions: Dale and sysprog
Simple proof: ignore throws which repeat a number. The following considers only throws with a new number. First throw 5/6 not 6, second throw 4/5 not 6, etc. probability of not 6 after 5 throws is 5!/6!=1/6.
 
  • Like
Likes   Reactions: FactChecker

Similar threads

  • · Replies 9 ·
Replies
9
Views
5K
Replies
2
Views
4K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 3 ·
Replies
3
Views
4K
Replies
2
Views
2K
Replies
2
Views
4K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 41 ·
2
Replies
41
Views
6K
  • · Replies 53 ·
2
Replies
53
Views
10K