[Math] Expectation of the min of two independent random variables

probabilityprobability distributionsrandom variablesuniform distribution

How do you compute the minimum of two independent random variables in the general case ?

In the particular case there would be two uniform variables with a difference support, how should one proceed ?

EDIT: specified that they were independent and that the uniform variables do not have obligatory the same support range.

Best Answer

$F_{X,Y}(x,y)$ be the joint cumulative distribution function. Then, for $Z= \min(X,Y)$ $$ \begin{eqnarray} 1-F_Z(z) &=& \mathbb{P}\left(\min(X,Y) > z\right) = \mathbb{P}\left(X > z, Y>z\right) \\ &=& 1 - \mathbb{P}\left(X\leqslant z\right) - \mathbb{P}\left(Y\leqslant z\right) + \mathbb{P}\left(X\leqslant z, Y\leqslant z\right) \end{eqnarray} $$ where the inclusion exclusion principle was applied to get the last equality. Thus $$ F_Z(z) = \mathbb{P}\left(X\leqslant z\right) + \mathbb{P}\left(Y\leqslant z\right) - \mathbb{P}\left(X\leqslant z, Y\leqslant z\right) = F_X(z) + F_Y(z) - F_{X,Y}(z,z) $$ Notice that we have not used the information about the correlation of $X$ and $Y$.

Let's consider an example. Let $F_{X,Y}(x,y) = F_X(x) F_Y(y) \left(1+ \alpha (1-F_X(x)) (1-F_Y(y))\right)$, known as Farlie-Gumbel-Morgenstern copula, and let $F_X(x)$ and $F_Y(y)$ be cdfs of uniform random variables on the unit interval. Then, for $0<z<1$ $$ F_Z(z) = 2 z - z^2 \left(1 + \alpha (1-z)^2 \right) $$ leading to $$ \mathbb{E}\left(Z\right) = \int_0^1 z F_Z^\prime(z) \mathrm{d}z = \frac{1}{3} \left(1 + \frac{\alpha}{10} \right) $$