Thu Jun 30 02:10:27 2016 by subhuman |
I'm trying to look at probability curves for rolling 2d6 twice and taking the higher of the two results. When I try using "max {2d6, 2d6}" the results it returns are the single highest die of the 4d6 rolled. Is there some way to generate two numbers between 2 and 12 and compare the two? |
Thu Jun 30 02:21:28 2016 by subhuman |
Never mind...I got it. max {sum 2d6, sum 2d6} |
Thu Jun 30 09:02:27 2016 by Torben |
Or slightly easier (because there are only two dice): max {d6+d6, d6+d6} |