3 Students, $A, B, C$ answer a question (independently). The probability of $A$ getting the correct answer is $0.9$, probability for $B$ is $0.7$ and the probability for $C$ is $0.4$ Q: Find the probability exactly two students get the question correct.
We can have $AB, BC, AC$ as those who get it correct. The question is, what about $ABC$?
I have
$P(\text{Exactly two get it right}) = P(AB \cup BC \cup AC) = P(AB) + P(AC) + P(BC) - P(AB \cap AC) - P(AB \cap BC) - P(BC \cap AC) + P(AB \cap AC \cap BC) $
But isn't that just
$$= P(AB) + P(AC) + P(BC) - 2 \cdot P(AB \cap AC \cap BC) $$
$$= (0.9*0.7) + (0.9*0.4) + (0.7*0.4) - 2(???)$$
Can we assume $AB, AC, BC$ are independent? What do I do?