Let $U_{1}, U_{2}, U_{3}$ be i.i.d. random variables which are uniformly distributed on (0,1). Let $X = \min(U_{1}, U_{2})$ and $Y = \max(U_{2}, U_{3})$
(a) Find $P(X< x, Y < y)$ for all x,y in $\mathbb R$
(b) Find $P(X = Y)$
(c) Find $E[XI_{\{X=Y\}}]$ where $I_{A}$ is the indicator function of A.
(a) I found the PDFs of X and Y, i.e. $f_X(x)=2(1-x), f_Y(y)=2y$ using order statistics. I wanted to find the joint density and then integrate it to get the joint CDF, but I'm not sure how to find the joint density given that X and Y are dependent (?). Can someone please help?
b) $$P(X=Y)=P( \min(U_1,U_2)= \max(U_2,U_3))=P( \min(U_1,U_2)=U_2, \max(U_2,U_3)=U_2)=P(U_1>U_2>U_3)=\frac{1}{6}$$ (Since there are 6 (3!) ways to order 3 of these variables, I'm neglecting the possibility of $U_1=U_2=U_3$). Is this correct?
c) Isn't it the same as part (b)? I'm confused, please help.
For finding the joint CDF, it's probably easiest to attack it directly and break it into components rather than trying to sort out the joint PDF from the marginal distributions.
$\begin{eqnarray} P(X < x, Y < y) & = & P(X < x | Y < y) P(Y < y) \\ P(X < x | Y < y) & = & 1 - P(X \geq x | Y < y) \\ & = & 1 - P(U_1 \geq x \land U_2 \geq x | U_2 < y \land U_3 < y) \\ & = & 1 - P(U_1 \geq x) P(U_2 \geq x | U_2 < y) & \textrm{by independence} \\ P(Y < y) & = & P(U_2 < y \land U_3 < y) \\ & = & y^2 \end{eqnarray}$
I'll leave it to you to piece everything together from there, and maybe do some calculus to prove to yourself that you get the right marginal distributions as a result. You can then apply the joint CDF to parts (b) and (c) as necessary.