Let $X =$ the number of requests you receive at your web site per minute, where $X \sim Poi(10)$. Each request, independently of all other requests, is equally likely to be routed to one of $N$ web servers. Compute the expected number of web servers that will receive at least one request each during a minute.
(Hint: there are a few ways to do this problem, but one way you might approach it is to first determine the conditional expectation of the number of web servers that receive at least one request each during a minute, conditioned on some fixed number, k, of requests during that minute. Then use that result to compute the unconditional expectation of the number of web servers that receive at least one request each during a minute.)
Have tried many things:
Defined $S = \sum_i S_i$
Defined $S_i =$ at least $1$ request sent to server $i$
$$P(S_i \ge 1 | k) = 1 - P(Si = 0) = 1 - \left(\binom{k}{0} \left(\frac1N\right)^0 \left(1 - 1/N\right)^k\right)$$
$$E[S_i | k] = P(S_i \ge 1) $$
$$E[S] = E[S | X = k] P(X = k)$$
$$E[S|k] = N E[S_i|k]$$
$$E[S] = \sum_k (N E[S_i|k] P(X=k)) $$
But stuck
For convenience, let $r=1-\frac1N,$ \begin{align} E[S]&= \sum_{k=0}^\infty N E[S_i|X=k]P(X=k)\\ &=N\sum_{k=0}^\infty \left(1- r^k \right)P(X=k)\\ &=N\left( 1- \sum_{k=0}^\infty r^kP(X=k)\right)\\ &=N\left( 1- \sum_{k=0}^\infty r^k\exp(-\lambda )\frac{\lambda^k}{k!}\right)\\ &=N\left( 1- \exp(-\lambda )\sum_{k=0}^\infty \frac{(r\lambda)^k}{k!}\right)\\ &=N\left( 1- \exp(-\lambda )\exp(\lambda r)\sum_{k=0}^\infty\exp(-\lambda r) \frac{(r\lambda)^k}{k!}\right)\\ &=N\left( 1- \exp(\lambda (r-1))\right)\\ &=N\left( 1- \exp(-\frac{\lambda}{N})\right)\\ \end{align}