How to calculate conditional probability with inequality

1.7k Views Asked by At

I know that: \begin{equation}\displaystyle P(A=x|A+B=y) = \frac{P(A=x \cap A+B=y)}{P(A+B=y)}\end{equation} Assuming $A$ and $B$ are independent, the intersection of the two events can be resolved as follows: \begin{equation} P(A=x \cap A+B=y)=P(A=x)\cdot P(x+B=y) \end{equation} I don't know how to follow the same steps for the conditional probability with inequality: \begin{equation}P(A<B | C<B)\end{equation} where A, B and C are independent random variables.

Thanks.

1

There are 1 best solutions below

3
On BEST ANSWER

If we can assume $A,B,C$ are continuous random variables, then,

\begin{eqnarray*} P(A \lt B \mid C \lt B) &=& \dfrac{P(A \lt B \;\cap\; C \lt B)}{P(C \lt B)}. \end{eqnarray*}

$$P(C \lt B) = \int_{-\infty}^\infty f_B(x)F_C(x)\,dx.$$

\begin{eqnarray*} P(A \lt B \;\cap\; C \lt B) &=& \int_{-\infty}^\infty f_B(x)F_{AC}(x,x)\,dx \\ &=& \int_{-\infty}^\infty f_B(x)F_A(x)F_C(x)\,dx \quad\mbox{(by independence)}.\end{eqnarray*}

Applying this to a simple example where $A,B,C$ each have uniform distribution over $[0,1]$:

$$P(C \lt B) = \int_0^1 1\cdot x\,dx = \left[\frac{x^2}{2} \right]_0^1 = \frac{1}{2}.$$

$$P(A \lt B \cap C \lt B) = \int_0^1 1\cdot x\cdot x\,dx = \left[\frac{x^3}{3} \right]_0^1 = \frac{1}{3}.$$

$$\therefore P(A \lt B \mid C \lt B) = \dfrac{1/3}{1/2} = \dfrac{2}{3}.$$