Dice Game Simulation

This page simulates a game where two players roll a die. If the number rolled is 4 or less, the number is added to the "small" player's score. If the number is a 5 or 6, it is added to the "big" player's score. The first player to reach 20 points wins.

Results:

Small:

{{simulation.smallWins | number}}

{{(simulation.smallWins * 100) / (simulation.smallWins+simulation.bigWins) | number:2}}%

Big:

{{simulation.bigWins | number}}

{{(simulation.bigWins * 100) / (simulation.smallWins+simulation.bigWins) | number:2}}%