I am currently doing a spot of game-design but I am held back by being only a novice in the arts of mathematics. Here is the problem:
I wish to calculate the probabilities of the eleven outcomes of rolling
3d6but dropping the lowest dice. So it is like rolling2d6but with a significant bias for higher rolls.
When rolling 3d6, there are 216 different dice combinations. In order to get the outcome 2 (with 3d6-drop lowest), all 3 dice must be 1 (1, 1, 1) (Orelse we would be dropping a 1 in favour of a dice that doesn't show 1) the probability of getting the outcome 2, is therefore 1/216.
I can also tell that the probability of getting the outcome 12, is 16/216 since there are 16 different outcomes that result in 12. When rolling 3d6 there are 16 different outcomes that contain at least 2 6'es.
That said, counting out all the possible combinations seem like a very manual way to get these probabilities, that will be nearly impossible when it comes to the more likely outcomes, such as 7, 8 and 9...
What is a good method to actually figuring out what I want to know?
Outcomes:
2: 1/216
3: ??
4: ??
5: ??
6: ??
7: ??
8: ??
9: ??
10 ??
11: ??
12: 16/216
Edit: cleaning some small mistakes in my explanation
Edit2: Thank you Henry, there are 11 outcomes of course, not 12.
I would like to close this question, as user @Jmoravitz put me on the track with For loops, and I see now how to easily get a computer to figure this out. Here is the full Python script if anyone is interested. It may be of use for other xdy drop z lowest (or even highest) dice:
This prints the following correct data: