I'm working on some probability problems involving multiple dice rolls, and I'm uncertain about how to approach them systematically. I hope someone could guide me through the correct method for calculating these probabilities. I'll list a few examples of the type of problems I'm dealing with:
- What is the probability of getting a sum of 7 or 8 when rolling two dice?
- What is the probability of getting a sum of 12, with no fives appearing, when rolling three dice?
- What is the probability of getting a sum of 12, with at least one five, when rolling three dice?
- What is the probability of rolling an odd total sum with two dice?
- What is the probability of rolling a total sum greater than 7 with two dice?
- What is the probability of getting two sixes when rolling three dice?
- Should one bet on the event "at least one six appearing in three dice rolls"?
- What is the probability of rolling either the minimum or maximum sum with three dice?
For instance, for the first problem, I started by listing all possible outcomes for two dice rolls and counted the cases that sum up to 7 or 8. However, as the questions become more complex, like questions 2 and 3, I'm not sure how to account for all the cases without extensive enumeration, especially when dealing with restrictions like 'no fives' or 'at least one five'.
Could you please provide some guidance or strategies for tackling these types of questions more effectively? Any help or insights into how one should approach these from a probability standpoint would be greatly appreciated.
BTW I found a useful post, but I can't figure out if it can be use for other problems.
Thank you in advance!
I may have the equations you're looking for. For the 2 dice, the probability of a sum is (||x-7|-6|-|x-7|+6)/72, where x is the sum of the dice. It's made this way so that the whole sums that the dice can't make are at y=0. For the 3 dice, (((||x-10.5|-8.5|-|x-10.5|+8.5)^2)/1728)-3(((||x-10.5|-2.5|-|x-10.5|+2.5)^2)/1728)+(||x-10.5|-8.5|-3||x-10.5|-2.5|+2|x-10.5|+1)/864. However, if the number of sides of any of the dice aren't 6, then the equation for the 2 dice is (||x-((a1+a2)/2)-d1-d2+1|-((a1+a2)/2)|-||x-((a1+a2)/2)-d1-d2+1|-|(a1-a2)/2||+((a1+a2-|a1-a2|)/2))/2a1a2, where a is the number of sides and d is the starting number of either die number 1 or 2 as long as both their numbers go up by 1 from lowest to highest. The equation for 3 dice is too complex for me to type, so for now, you could use the previous equation for 2 of the 3 dice, except it would end with ".../2" to calculate the number of ways to get a sum from those two, and use the numbers of the third one to help find the number of ways to get the sum before dividing the total by the product of each die's number of sides. For example, if you want to know the probability of getting a sum of 6 from rolling 3 4-sided dice, with 1-4 on each die, you'd start by putting in 4 for both a's and 1 for each d in the equation and find that in order from sum-number of ways, the results you could use are: 2-1, 3-2, 4-3, 5-4, because 6-1=5 and 6-4=2, so you could add the y-values of 2-5 together to get 10 total ways of getting a sum of 6 and divide it by 4 cubed, or 64, to get 5/32 as the probability of such. You could rewrite these equations if you'd like as long as they still have the same points. If they're wrong, though, I'm sorry. I'm also sorry for all the parenthesis in the equations. I just wanted to make sure they were easy to follow.