I think I know how to do this but I just want to make sure that it's 100% correct.
$X_1, X_2$ are i.i.d. random variables with distribution EXP(1)
f($x_1, x_2$) = $e^{(-x_1-x_2)}$I(x >= 0)
Question: Find the joint PDF of $T_1$ = min($X_1, X_2)$ and $T_2$ = $X_1$ + $X_2$
Here is what I did:
Partition into two: $B_1$ is for $X_1 <= X_2$, $B_2$ is for $X_1 > X_2$
On $B_1$: $X_1 = T_1$, $X_2 = T_2 - T_1$
Jacobian is {1,0}{-1,1}, Det Jacobian = 1
On $B_2$: $X_2 = T_1$, $X_1 = T_2 - T_1$
Jacobian is {-1, 1}{1,0}, Det Jacobian = -1
So g($t_1, t_2$) = $e^{(-t_2)}$*1*I($x_1 < x_2$) + $e^{(-t_2)}$*|-1|I($x_1 > x_2$)
I have another question, what if it was X1, ..., Xn and T1 = min Xi, T2 = max Xi, is there a quick way to do this one?
– user3251256 Oct 16 '14 at 22:46