If I launch 4 dice and at least one even number appears, what is the probability that the sum of the results be even?
A: "The sum of the results is even"
B: "At least one even number appears"
A∩B = A
f(x) = (4Cx)*[(1/2)^x]*[(1/2)^(n-x)]
P(A) = f(2)+f(4) = [(4C2)*[(1/2)^4]]+[(1/2)^4]
P(B) = 1-f(0) = 1-[(1/2)^4]
P(A/B) = P(A)/P(B) = (7/16)/(15/16) = 7/15
The solution is correct?