My question is how to calculate the following formula without iteration:
$$ \max \{A,B,C,D\} \tag 1 $$
suppose $A,B,C,D$ are normal and independent: I know (1) can be rewritten as
$$\max(\max(\max(A,B),C),D)$$
where
$$\max(A, B)= F(A)\cdot f(B) + F(B) \cdot f(A)$$
where $F$ is the CDF and $f$ is the PDF
if $$\max (A, B) = M_ab$$ then $$\max (A, B , C) = F(M_ab) \cdot f(C) + F(C) \cdot f(M_ab)$$ and so on.
Is there any other way for calculating maximum of $n$ random variables at once, instead of repetitively using pair-wise max?
(i.e $\max \{A, B, C, D\} = E$, where $E$ can be any type of distribution)