I came across this problem:
What is the probability that at least one of a pair of fair dice lands on 6, given that the sum of the dice is i, i = 2, 3, ... , 12?
I know the answer is zero for i<7 (obviously) and I counted up the different possibilities to find the answers for i>=7, which is (1/3,2/5,1/2,2/3,1,1) for (7,8,9,10,11,12). However, I tried to deduce this with conditional probability rules, and I'm getting different answers.
Given R is event that at least one of the die lands on a six, and Si is the event that the sum of the die is i, then
P(R∣Si) = P(RSi)/P(Si) = P(R)P(Si|R)/P(Si).
P(Si|R) should be 1/6 for any value i>6, since if we know one die gets a 6, then the other die must be a specific value to get any specific value of i.
Since R is the odds that the first die rolled lands on a 6 or that the second die rolled lands on a 6, then P(R) = P(Die 1 is 6 or Die 2 is 6) = P(Die 1 is 6) + P(Die 2 is 6) - P(Die 1 is 6 and Die 2 is 6) = (1/6) + (1/6) - (1/36) = 11/36
However, if I try to use the equation and these values, I get different answers than I should. For example, for i = 12 I get
((11/36)*(1/6))/(1/36) = 11/6
Which is of course wrong because a probability can't be greater than 1. What am I doing wrong?