Let $X_1, X_2, ... X_n$ be independently drawn from different normal distributions, such that $ X_i \sim N(\mu_i, \sigma^2_i) $
For any $j$ what is the probability that $X_j$ is the greater than all other $X$?
E.g. for $j=1$ what is $P(X_1 > X_2 \land X_1 > X_3\land ...\land X_1 > X_{n})?$ E.g. when $n=3$, what is $P(X_1 > X_2 \land X_1 > X_2)?$
Initially I incorrectly thought $P(X_1 > X_2 \land X_1 > X_2) = P(X_1 > X_2) *P(X_1>X_3)$. However, if we imagine all distributions are equal, then $P(X_i > X_j) = 0.5$ so the product becomes $0.5 * 0.5 = 0.25$ however in reality $P(X_j \textrm{ is greatest) = 1/3}$ when $n=3$.
I'm currently running numerical simulations to calculate this probability as part of a multi-armed-bandit simulation project I'm working on, but I feel that there must be an analytical solution to this I can use to save compute time?