There are 20 balls in an urn labeled from 1 to 20. You randomly pick 10 balls out of this urn. What is the expected maximum value of the 10 balls you picked out?
I was able to solve the problem using quite tedious combinatorics as shown below. Is there any other method to solve it?
My Solution: $$\frac{20\cdot\binom{19}{9} + 19\cdot\binom{18}{9} +\dots+10\cdot\binom{9}{9}}{\binom{20}{10}} = \frac{210}{11} $$
Distribute the $20$ numbers in ascending order uniformly on a $0-1$ scale, so they're at $\frac{k}{21},$ for $k=1,2,3,...20$
On the other hand, in similar vein, the sampled numbers are at $\frac1{11}, \frac2{11}, \frac3{11} ... \frac{10}{11}$ on an average.
[The $20$ numbers partition a line of length $1$ into $21$ equal segments, and the $10$ samples on an average are expected to divide it into $11$ equal segments, each of which have the same distribution, and we want to find out at what point on the line the highest sampled point falls]
Thus for sampling $10$ numbers, $\frac{10}{11} = \frac{k}{21}, k = \frac{210}{11}$
If only $3$ numbers had been sampled, for example, we would directly get $k$ = $\frac{3\cdot21}{4} = \frac{63}{4}$
Note that the actual highest numbers could have been anything, we are dealing with expected values