There are 4 people, each of whom has one deck of cards with 500 cards that are numbered from 1 to 500 with no duplicates.
Each person draws a card from his deck and I would like to calculate the probability of the event that "the arithmetic mean of the number on the 4 cards is 405".
How to make that?
Some explanation is welcome.
This is equivalent to asking if the sum is 1620. The individual variables are i.i.d. discrete uniform, so there is probably some well-developed theory on this. However, we can do it elementary style ; )
To get a total of 1620, the first player must have at least a 120. So we have $\sum_{i=120}^{500}$ to consider. Now the second player must have at least $620-i$, so we take $\sum_{j=620-i}^{500}$. The third player must have at least $1120-i-j$, so we take $\sum_{k=1120-i-j}^{500}$. The fourth player must now draw exactly $500-i-j-k$. Each draw has a probability of $1/500$. So we obtain $$P(X=1620)=\sum_{i=120}^{500}\frac{1}{500}\sum_{j=620-i}^{500}\frac{1}{500}\sum_{k=1120-i-j}^{500}\frac{1}{500}\cdot\frac{1}{500}$$ $$=\frac{1}{(500)^4}\sum_{i=120}^{500}\sum_{j=620-i}^{500}\sum_{k=1120-i-j}^{500}1$$ $$=\frac{9,290,431}{(500)^4}\approx 0.000148646896$$