I have a Poisson based distribution as follows:
$P(1)=0.1708$;
$P(2)=0.138$;
$P(3)=0.092$;
...
...
$P(10)=0.000034$;
I pick numbers between $1$ and $10$ according to this distribution but if a number is previously picked, I re-iterate the routine to find a non-picked number in this interval.
In the beginning, I suppose none of the numbers are picked.
I have to pick $5$ numbers among these $10$ numbers.
How can I find the maximum expected number that is picked?
Thanks...
Because my previous answer was wrong, I will use method suggested by @Henry - bruteforce checking all possible pick schemes:
Note, that $$P(a,b,c,d,e)=\frac{P(a)\cdot P(b)\cdot P(c)\cdot P(d)\cdot P(e)}{Q(a)\cdot Q(a,b)\cdot Q(a,b,c)\cdot Q(a,b,c,d)}$$ where $$Q(a,b,...)=1-P(a)-P(b)-...$$
Let $R(x)$ be a function describing the probability, that the greatest drawn ball is $x$. We have then
$R(x)=\sum\limits_{a,b,c,d < x,\\ a\neq b, a\neq c, a\neq d,\\ b\neq c, b\neq d, c\neq d} P(a,b,c,d,x)$
The expected value $E$ is then equal to: $$E=\sum_{n=5}^{10}nR(n)$$
My python script:
Out:
E = 5.60641877293