Mon Feb 27 19:28:19 2017 by JB |
This is a fantastic resource, hopefully you can help me figure out what i want to get to. I'd like to get the odds that I will get at least 3 6s on 6d6 when the d6s explode. |
Tue Feb 28 09:45:35 2017 by Torben |
Exploding dice are done with the accumulate construct. You can do it like this:count 6= 6#(accumulate x:=d6 while x=6) The probability for getting at least 3 6s is shown to be 13.485% |