Expected value of product of maximum, minimum of n U[0,1] variables

605 Views Asked by At

Monte Carlo simulation suggests that this expected value is $\frac{1}{n+2}$. I'm trying to prove this - brute force calculating doesn't work well, does anyone have any tips on how to proceed?

1

There are 1 best solutions below

1
On BEST ANSWER

Let $U_1, U_2, U_3, \dots , U_n$ be i.i.d. Uniform(0,1) random variables, and let $X = \min_{1 \le i \le n} U_i$ and $Y = \max_{1 \le i \le n} U_i$, so we want to find $E(XY)$. We proceed by finding the joint distribution function of $(X,Y)$, then the density function, and finally integrate to find the expected value of $XY$.

To find the joint distribution function, note that $$\begin{align} F(x,y) &= P(X \le x, Y \le y) \\ &= P(Y \le y) - P(X \ge x, Y \le y) \\ &= y^n - (y-x)^n \end{align}$$ for $0 \le x \le y \le 1$. Then the joint density function is $$f(x,y) = \frac{\partial^2 F(x,y)}{\partial x \; \partial y}=n(n-1)(y-x)^{n-2} $$ so the expected value of $XY$ is $$\begin{align} E(XY) &= \int_0^1 \int_0^y xy \; f(x,y)\; dx\;dy \\ &= n(n-1) \int_0^1 \int _0^y xy(y-x)^{n-2} \;dx \; dy \\ &= \frac{1}{n+2} \end{align}$$