I have a dice problem. If we roll 2 fair dice, and the sum is 12 then our test is a pass, otherwise its a fail. What is the probability that the number of passes in 36 tests is greater then 1.
S={1,2,3,4,5,6}
(S,S) = { (1, 1), (1, 2), (1, 3), (1, 4), (1, 5), (1, 6), (2, 1), (2, 2), (2, 3), (2, 4), (2, 5), (2, 6), (3, 1), (3, 2), (3, 3), (3, 4), (3, 5), (3, 6), (4, 1), (4, 2), (4, 3), (4, 4), (4, 5), (4, 6), (5, 1), (5, 2), (5, 3), (5, 4), (5, 5), (5, 6), (6, 1), (6, 2), (6, 3), (6, 4), (6, 5), (6, 6)}
event
Let e = sum of both dice is 12 e in s = {(6,6)} P(e)=1/36
Then, i guess i would need to take the inverse of the failures
1 - (35/36)$*$(35/36)$*$(35/36)$*$ ... $*$(35/36)
1 - .3267 = .6372
If im looking at this right, then i have just calculated the probability that my test passes at least once. How do i modify this to calculate at least 2 times?
EDIT:
I think i should look at it like this: P(eefff...f) = 1/36^2 * 35/36^34