7

Given the events $A, B$ the conditional probability of $A$ supposing that $B$ happened is:

$$P(A | B)=\frac{P(A\cap B )}{P(B)}$$

Can we write that for the Events $A,B,C$, the following is true?

$$P(A | B\cap C)=\frac{P(A\cap B\cap C )}{P(B\cap C)}$$

I have couple of problems with the equation above; it doesn't always fit my logical solutions.

If it's not true, I'll be happy to hear why.

Thank you.

amWhy
  • 209,954
  • 2
    The formula for conditional probability is correct only when $P(B)\neq 0$, not when $B$ can occur. There are plenty of events that can occur that have zero probability. Like picking $1/2$ out of a uniform distribution on $[0,1]$ or flipping a coin and having every even flip come up heads. – Aaron May 24 '11 at 19:14
  • how is flipping a coin and having every even flip turn up heads have a probability of zero? – Dave Feb 19 '24 at 01:15

4 Answers4

7

Yes you can. I see no fault. Because if you put $K = B \cap C$ you obtain the original result

7

Yes and this is also known as multiple conditioning. In general, $$P(A_1 \cap \cdots \cap A_n) = P(A_1) \prod_{i=2}^{n} P(A_{i}|A_{1} \cap \cdots \cap A_{i-1})$$

cardinal
  • 7,420
4

Yes, $$ P(A|B \cap C) = \frac{{P(A \cap (B \cap C))}}{{P(B \cap C)}} = \frac{{P(A \cap B \cap C)}}{{P(B \cap C)}}. $$

Shai Covo
  • 24,077
3

Yes, your conclusion is correct. Note that the way you have defined conditional probability, you must insist that the denominator be non-zero.

André Nicolas
  • 507,029