Finding $P(\min(X_1,X_2,X_3)<\max(Y_1,Y_2))$ where $X_i,Y_i$ are exponential variables

270 Views Asked by At

We are given $(X_1, X_2, X_3, Y_1, Y_2)$ where $X_1 \sim \text{Exp}(1)$, $X_2 \sim \text{Exp}(2)$, $X_3 \sim \text{Exp}(3)$, $Y_1 \sim\text{Exp}(4)$, $Y_2 \sim \text{Exp}(4)$ and are asked the probability that the minimum of $X_1, X_2, X_3$ is less than the maximum of $Y_1$ and $Y_2$.

I found that the distribution of $\min(X_1, X_2, X_3)$ is $\text{Exp}(6)$ and the distribution of $\max(Y_1, Y_2)$ is $\text{Exp}(4)+\text{Exp}(8)$.

My question is then how do I compute the probability that $\text{Exp}(6) < \text{Exp}(4) + \text{Exp}(8)$

2

There are 2 best solutions below

6
On

$U = \min(X_1,X_2,X_3)$

$\forall u>0, \ P(U>u) = P(X_1>u)P(X_2>u)P(X_3>u) = e^{-u}e^{-2u}e^{-3u}=e^{-6u}$

$U\sim \mathcal E (6)$


$V = \max(Y_1,Y_2)$

$\forall v>0, \ P(V<v) = P(Y_1<v)P(Y_2<v) = (1-e^{-4u})^2$

$\forall v>0, \ f_V(v) = 8e^{-4u}(1-e^{-4u})$


Using the law of total probability $$\begin{align} P(U<V)& = \int_{0}^{\infty} P(U<v) \ f_V(v) \ dv \\ &= \int_0^{\infty} (1-e^{- 6v}) \ 8(e^{-4v}-e^{-8v}) \ dv \\ &= \int_0^{\infty} 8(e^{-4v} - e^{-8v} - e^{-10v} + e^{14v}) \ dv \\ &= 2-1-\frac 8 {10}+\frac 8 {14} \\ &= 1- \frac 45+ \frac 47 = 1 - \frac{8}{35} = = \frac{27}{35}\end{align}$$

3
On

One wants to compute $$p=P(\min(X_1,X_2,X_3)<\max(Y_1,Y_2))=1-P(\min(X_1,X_2,X_3)>\max(Y_1,Y_2))$$ To do so, first note that, for every nonnegative $y$, $$P(\min(X_1,X_2,X_3)>y)=P(X_1>y)P(X_2>y)(X_3>y)=e^{-y}\cdot e^{-2y}\cdot e^{-3y}=e^{-6y}$$ hence, conditioning on $\max(Y_1,Y_2)$, $$1-p=E(P(\min(X_1,X_2,X_3)>\max(Y_1,Y_2)\mid\max(Y_1,Y_2))=E(e^{-6\max(Y_1,Y_2)})$$ Now, for every random variable $Z$ such that $0<Z<1$ almost surely, $$E(Z)=\int_0^1P(Z>z)dz$$ hence $$E(e^{-6\max(Y_1,Y_2)})=\int_0^1 P(e^{-6\max(Y_1,Y_2)}>z)dz=\int_0^1P(\max(Y_1,Y_2)<-\tfrac16\ln z)dz$$ Furthermore, for every nonnegative $y$, $$P(\max(Y_1,Y_2)<y)=P(Y_1<y)\cdot P(Y_2<y)=(1-e^{-4y})^2$$ hence $$1-p=\int_0^1(1-z^{2/3})^2dz\stackrel{z^2=t^3}=\int_0^1(1-t)^2\frac32t^{1/2}dt=\frac32\frac{\Gamma(3)\Gamma(3/2)}{\Gamma(9/2)}$$ that is, $$p=1-\frac32\frac{2}{(7/2)(5/2)(3/2)}=1-\frac8{35}=\frac{27}{35}$$