Dice probabilities
|
04-29-2024, 04:23 PM
Post: #1
|
|||
|
|||
Dice probabilities
So I came across this question while playing a new board game at the weekend.
This board game has multiple dice which are unusual - they have 2 blank faces, 2 'one dot' faces and 2 'two dot' faces. I.e. a 1/3rd chance to roll a zero, one or two. In this game we roll multiple dice and then sum the number of dots to score that roll. What is the probability of rolling a score of more than or equal to 7 when I have 5 of these dice in my hand? Does anyone know of a good way to calculate this? I've thought of two approaches, both of which are a bit inelegant. I'm curious to see if there is a neater way especially for the general case, and whether a program could be written to calculate it. |
|||
04-29-2024, 04:55 PM
Post: #2
|
|||
|
|||
RE: Dice probabilities
\(
\begin{align} (x^2+x+1)^5 &= x^{10} + 5 x^9 + 15 x^8 + 30 x^7 + 45 x^6 + 51 x^5 + 45 x^4 + 30 x^3 + 15 x^2 + 5 x + 1 \\ \\ p &= \frac{1 + 5 + 15 + 30}{3^5} \\ &= \frac{51}{243} \\ &= \frac{17}{81} \\ &\approx 0.20988 \end{align} \) |
|||
04-29-2024, 05:49 PM
Post: #3
|
|||
|
|||
RE: Dice probabilities
That looks good to me, but can you explain for someone who is not so bright?
|
|||
04-29-2024, 06:07 PM
Post: #4
|
|||
|
|||
RE: Dice probabilities
We might rather write it: \(x^2+x^1+x^0\)
Thus for an ordinary die we would use: \(x^6+x^5+x^4+x^3+x^2+x^1\) If these terms get multiplied, their exponents are added. We're using the distributive law. Every possible case gets combined with all the others. And the exponents are added up for us. I assume that the reason we add up the coefficients of \(x^{10} \cdots x^7\) is clear. |
|||
04-29-2024, 07:14 PM
Post: #5
|
|||
|
|||
RE: Dice probabilities
Oh that is fascinating.
So you are using the powers of x and the distributive law to 'add up' the powers of x and therefore essentially generate the crossing of 0, 1, 2. Are you just using the convenience of this in order to calculate that - because I don't think there is anything inherently 'squared' about a die with two dots, or I may be missing something. Also I imagine it took a while to expand out? |
|||
04-29-2024, 07:22 PM
Post: #6
|
|||
|
|||
RE: Dice probabilities
This was my simple method simply generating every possible roll using the function `expand.grid` in R, then summing, and finding the number with scores >= 7 (and other scores as well as other number of dice).
Code:
Another method I had was to consider the number of combinations of dice that made up 7 or higher, i.e.: 7: 2, 2, 2, 1, 0 - 5!/3! 7: 2, 2, 1, 1, 1 - 5!/(2! x 3!) 8: 2, 2, 2, 2, 0 - 5!/4! 8: 2, 2, 2, 1, 1 - 5!(2! x 3!) 9: 2, 2, 2, 2, 1 - 5!/4! 10: 2, 2, 2, 2, 2 - 1 then (5!/3! + 5!/(2! x 3!) + 5!/4! + 5!(2! x 3!) + 5!/4! + 5!/4! + 1) / 3^5 = 20.99% |
|||
04-29-2024, 09:22 PM
Post: #7
|
|||
|
|||
RE: Dice probabilities
Dice = (x^2 + x^1 + x^0) / 3 = 100% // see Probability-generating function
Dice^5 = 100% probability too. From this distribution, just pick what we needed. >10101^5 // (x^2+x+1)^5, for x=100 1.05153045515E20 >(1+5+15+30+45+51+45+30+15+5+1)/3^5 1 >(1+5+15+30)/3^5 // P(sum >= 7) .20987654321 |
|||
04-29-2024, 10:36 PM
(This post was last modified: 04-29-2024 11:37 PM by Gil.)
Post: #8
|
|||
|
|||
RE: Dice probabilities
For a program with HP50G
Just simulate, one time, the case of having such 5 dice: Code: \<< 0. 0. 1. 5. Just simulate now the above subroutine P, not once, but 10000 times as follows: \<< 0. 1. 10000. START P + NEXT 10000. / and you should find about 0.21. \>> To speed up the subroutine P, you can change the code into: Code: \<< 0. 0. 1. 5. |
|||
04-30-2024, 12:27 AM
Post: #9
|
|||
|
|||
RE: Dice probabilities
(04-29-2024 07:14 PM)dm319 Wrote: Also I imagine it took a while to expand out? Not really: (x^2+x+1)^5 (04-29-2024 04:23 PM)dm319 Wrote: (…) whether a program could be written to calculate it. Here's a program for the HP-42S: Code: 00 { 43-Byte Prgm } Initialisation 3 ENTER 1 NEWMAT 1 + x: [ 3×1 Matrix ] Loop R/S x: [ 5×1 Matrix ] R/S x: [ 7×1 Matrix ] R/S x: [ 9×1 Matrix ] R/S x: [ 11×1 Matrix ] The result is: \( \begin{bmatrix} 1 \\ 5 \\ 15 \\ 30 \\ 45 \\ 51 \\ 45 \\ 30 \\ 15 \\ 5 \\ 1 \\ \end{bmatrix} \) We can now also ask:
|
|||
04-30-2024, 12:40 AM
Post: #10
|
|||
|
|||
RE: Dice probabilities
Also the following links might be of interest:
|
|||
04-30-2024, 06:43 AM
Post: #11
|
|||
|
|||
RE: Dice probabilities
Here's a slightly improved program for the HP-42S:
Code: 00 { 52-Byte Prgm } It allows to use an arbitrary [ k×1 Matrix ] and an integer exponent \(n > 0\). Example Use matrix [ 1 2 3 ] and exponent \(n = 5\). 3 ENTER 1 NEWMAT EDIT 1 → 2 → 3 EXIT 5 R/S x: [ 11×1 Matrix ] The result is: \( \begin{bmatrix} 1 \\ 10 \\ 55 \\ 200 \\ 530 \\ 1052 \\ 1590 \\ 1800 \\ 1485 \\ 810 \\ 243 \\ \end{bmatrix} \) Compare this to: (x^2+2x+3)^5 |
|||
04-30-2024, 08:06 AM
(This post was last modified: 04-30-2024 09:22 AM by Thomas Klemm.)
Post: #12
|
|||
|
|||
RE: Dice probabilities
To illustrate the program, here's an example of a single execution of the loop:
Code: RCL "A" \( \begin{bmatrix} 1 \\ 4 \\ 10 \\ 12 \\ 9 \\ \end{bmatrix} \begin{bmatrix} 1 & 2 & 3 \end{bmatrix} = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 8 & 12 \\ 10 & 20 & 30 \\ 12 & 24 & 36 \\ 9 & 18 & 27 \\ \end{bmatrix} \) Code: STO "_" \( \begin{bmatrix} 1 & 2 & 3 \\ 4 & 8 & 12 \\ 10 & 20 & 30 \\ 12 & 24 & 36 \\ 9 & 18 & 27 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \\ \end{bmatrix} \) Code: RCL "_" \( \begin{bmatrix} 1 & 4 & 10 & 12 & 9 & 0 & 0 & 0 \\ 2 & 8 & 20 & 24 & 18 & 0 & 0 & 0 \\ 3 & 12 & 30 & 36 & 27 & 0 & 0 & 0 \\ \end{bmatrix} \) Code: DIM? \( \begin{bmatrix} 1 & 4 & 10 & 12 & 9 & 0 & 0 \\ 0 & 2 & 8 & 20 & 24 & 18 & 0 \\ 0 & 0 & 3 & 12 & 30 & 36 & 27 \\ \end{bmatrix} \) Code: RCL "_" \( \begin{bmatrix} 1 & 0 & 0 \\ 4 & 2 & 0 \\ 10 & 8 & 3 \\ 12 & 20 & 12 \\ 9 & 24 & 30 \\ 0 & 18 & 36 \\ 0 & 0 & 27 \\ \end{bmatrix} \) Code: RSUM \( \begin{bmatrix} 1 \\ 6 \\ 21 \\ 44 \\ 63 \\ 54 \\ 27 \\ \end{bmatrix} \) Compare this to: \((x^4+4x^3+10x^2+12x+9)(x^2+2x+3)\) \(= x^6 + 6 x^5 + 21 x^4 + 44 x^3 + 63 x^2 + 54 x + 27\) |
|||
04-30-2024, 10:59 AM
Post: #13
|
|||
|
|||
RE: Dice probabilities
Instead of multiply to expand polynomial, we could also do division.
(x^2+x+1)^5 = (x^3-1)^5 / (x-1)^5 Numerator coefficients is simply 5th row of pascal triangle, with alternate sign: x^15 - 5x^12 + 10x^9 - 10x^6 + 5x^3 - 1 Synthetic Division, (x-1) 5 times, we get the expanded polynomial needed. With symmetry, we only need 2 terms. (for exponent >= 7, we don't even need last 2 columns) Code: 1> 1 0 0 -5 0 0 P(sum >= 7) = (1+5+15+30)/3^5 = 17/81 ≈ 0.2099 Or, we skip synthetic divisions, and go straight for answer P(sum >= 7) = (1+5+T5+(Te5-5))/3^5 = (1+T5+Te5)/3^5 = (1+comb(6,2)+comb(7,3))/3^5 = 17/81 https://en.wikipedia.org/wiki/Triangular_number https://en.wikipedia.org/wiki/Tetrahedral_number |
|||
04-30-2024, 11:19 AM
Post: #14
|
|||
|
|||
RE: Dice probabilities
(04-29-2024 04:55 PM)Thomas Klemm Wrote: \( @dm If you like this kind of wizardy with counting, which Mr. Klemm and others here are simply world-class at doing on any platform, may I suggest A book called "Generatingfunctionology" by Wilf ( HTML page with terms)? Related (unevaluated) Youtube lectures. 17bii | 32s | 32sii | 41c | 41cv | 41cx | 42s | 48g | 48g+ | 48gx | 50g | 30b |
|||
04-30-2024, 12:00 PM
(This post was last modified: 04-30-2024 12:06 PM by Dave Britten.)
Post: #15
|
|||
|
|||
RE: Dice probabilities
Here's a short Python program I wrote a long time ago for generating probability tables:
https://gist.github.com/dave-britten/c4b...65ce54497b Roughly half of it is just processing the user input! Enter one die at a time, and enter a blank line to terminate input. EDIT: It's so old, in fact, that I just realized it's for Python 2! Here's a quick update to Python 3: Code: import re |
|||
04-30-2024, 05:11 PM
Post: #16
|
|||
|
|||
RE: Dice probabilities
I took the liberty to refactor your Python program:
Code: import re
Examples Code: Enter face values as non-negative integers, separated by spaces, commas, or semicolons. (e.g. "1,2;3 4 5 6") Code: Enter face values as non-negative integers, separated by spaces, commas, or semicolons. (e.g. "1,2;3 4 5 6") |
|||
04-30-2024, 05:58 PM
Post: #17
|
|||
|
|||
RE: Dice probabilities
(04-30-2024 05:11 PM)Thomas Klemm Wrote: I took the liberty to refactor your Python program: Cool! There's definitely plenty of room to fancy it up, especially with the 9 or so years of Python feature additions since I wrote it. I also did a Turbo Pascal 5.5 port if anybody needs to do this on a 200LX. |
|||
04-30-2024, 06:04 PM
Post: #18
|
|||
|
|||
RE: Dice probabilities
(04-30-2024 05:11 PM)Thomas Klemm Wrote: Here's an example of parametrized tests using pytest: Code: import pytest To run the tests, pip install pytest into the virtual environment and execute: pytest test_dice.py Code: ============================================================================================================================ test session starts ============================================================================================================================= |
|||
04-30-2024, 06:25 PM
Post: #19
|
|||
|
|||
RE: Dice probabilities
(04-30-2024 12:00 PM)Dave Britten Wrote: Here's a short Python program I wrote a long time ago for generating probability tables: Look what I found: Calculating odds of rolling a given total with a specified number of dice Cf. Post #14 |
|||
04-30-2024, 07:24 PM
Post: #20
|
|||
|
|||
RE: Dice probabilities
(04-30-2024 06:25 PM)Thomas Klemm Wrote:(04-30-2024 12:00 PM)Dave Britten Wrote: Here's a short Python program I wrote a long time ago for generating probability tables: Ah ha! There's that thread I wasn't coming up with the right combination of search terms to find. |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 3 Guest(s)