Define $e_i$ to be iid random variables drawn from an exponential distribution with parameter $\lambda=1$.
$a_i$ are numerical constants. I am interested in the probability that
$a_1 + e_1 < a_2 + e_2$
ie, that $a_1 +e_1$ is the min. The solution is $\exp[- (a_1 - a_2 )]/2$ if $(a_1 - a_2 )>0$, and $1-\exp(a_1 -a_2)/2$ otherwise. For example, if $a=(1,2)$, then probabilities are $(82\%, 18\%)$. [Note: I am not interested in the order statistics.] PS: Formulas and numbers corrected---thanks angryavian below.
What about three (or more) variables? Again, I want to know the probability that i is the min, given $(a_1 , a_2 , a_3 )$. For example, if $a=(1,2,3)$, then the probabilities I am interested in are $(76.50\%, 17.56\%, 5.94\%)$.
I am guessing there is no analytical generalization, but if there is, I would greatly appreciate pointers.
x <- matrix(rexp(2*trials), nrow=2) + a; print(c(Simulation=mean(x[1,] < x[2,]), Formula=1 - exp(-diff(a))/2))– whuber Nov 26 '17 at 15:36