1

I have to calculate/approximate the following multiple conditional probability:

$$P(X|C_1,C_2,C_3)$$

with only $P(X|C_1)$, $P(X|C_2)$ and $P(X|C_3)$ given. Is it possible to express the above in terms of these single conditional probabilities only? What independence assumptions would I need to make?

Edit: Concretely, I have an algorithm that can calculate single conditional probabilities $P(X|C_i)$ directly, and I want to use these to calculate multiple conditional probabilities. I'm fairly certain it is not possible to calculate this exactly, but perhaps I can make some independence assumptions so some terms can be dropped?

1 Answers1

-3

Assume $C_1,C_2,C_3$ are independent of each other. Then

$$P(X|C_1)P(X|C_2)P(X|C_3)=\frac{P(XC_1)}{P(C_1)}\cdot\frac{P(XC_2)}{P(C_2)}\cdot\frac{P(XC_3)}{P(C_3)}\\ =\frac{P(XC_1C_2C_3)}{P(C_1C_2C_3)}=P(X|C_1C_2C_3)$$

meta_warrior
  • 3,288
  • 18
  • 34
  • Seems to not match with this answer : https://math.stackexchange.com/questions/1288770/conditional-probability-given-multiple-independent-events – DollarAkshay Oct 30 '18 at 09:36
  • 5
    @AkshayLAradhya Indeed, this is wrong. Consider $C_1,C_2,C_3$ to be the events of throwing a head on, respectively, the first, second, and third of three fair coins, and $X$ to be the event of throwing exactly two heads among those three coins. So $C_1,C_2,C_3$ are mutually independent events (although clearly not conditionally independent). Now $\mathsf P(X\mid C_1,C_2,C_3)=0$ and $\mathsf P(X\mid C_i)=1/2$ for each $i\in{1,2,3}$. As $0\neq 1/8$, we see that we do not have $\mathsf P(X\mid C_1,C_2,C_3) = \mathsf P(X\mid C_1)~\mathsf P(X\mid C_2)~\mathsf P(X\mid C_3)$. – Graham Kemp Oct 30 '18 at 12:03