Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
| Download
Image: ubuntu2004
Kernel: Python 3 (system-wide)
Dice Roll Game
In this game, four six-sided die is being rolled. What is the probability of where all the dice can be paired off so that one pair adds up to four and the other pair adds up to nine?
First, we have to import numpy in to allow the simulation to work
In [1]:
Next, we have to create four dice for the dice rolls
In [2]:
Then, we have to list all wanted results. Which is basically all possible set of pairs, and each set has two wanted result where the first pair adds up to 7 and the second pair adds up to 9, or vice-versa. And which we got:
(D1+D2==7 and D3+D4==9) or (D1+D2 ==9 and D3+D4==7)
(D2+D3==7 and D1+D4==9) or (D2+D3 ==9 and D1+D4==7)
(D2+D4==7 and D1+D3==9) or (D2+D4 ==9 and D1+D3==7)
After that, we can make the code that runs the simulation multiple time and when there is a run that has one of the wanted result, it return a 1, likewise, it returns 0.
In [3]:
Lastly, we can run the simulation multiple times, and add up all the 1 and divide it by the total run to obtain the probabilty. Which in this case we run it 10000 times
In [5]:
Out[5]:
0.0778
Our simulation suggest that if we were to roll four dice, the probabilty of getting a result where one pair adds up to seven and the other pair adds up to nine is 7.78%
In [0]: