John Doe was a rich man. He had $k + 1$ piggy banks, $k$ coins in each. In $i$-th piggy bank, $i-1$ coins are genuine and $k + 1 - i$ coins are counterfeit.
John equiprobably chooses the piggy bank and does this sequence of actions $n$ times:
- He shakes a piggy bank until a coin falls out (any coin can fall out with the same probability);
- Writes down information about whether the coin was a genuine or counterfeit;
- Throws the coin back into the piggy bank.
John is legitimately surprised, as all $n$ times the coin was counterfeit. What is the probability $P_{k}(n)$ that the next coin to fall out of the chosen piggy bank is also counterfeit?
I. What is the explicit formula for $P_{k}(n)$? Find the probability for $n = 2$ and $k = 5$, find $P_{5}(2)$.
II. Find $\lim_{k \rightarrow \infty} P_{k}(n)$.
Attempt
$P(\text{fake coin} \space | \space n \space \text{fake coins}) = \frac{P(\text{fake coin and} \space n \space \text{fake coins})}{P(n \space \text{fake coins})} = \frac{P(n + 1 \space \text{fake})}{P(n \space \text{fake})}$. Applying the total probability rule to each term in the ratio yields this result. $$P_k(n) = \frac{\sum_{i = 0}^{k} (\frac{i}{k})^{n+1}}{\sum_{i = 0}^{k} (\frac{i}{k})^n}$$ How to proceed with the limit? $$\lim_{k \rightarrow \infty} \frac{\frac{1}{k}\sum_{i = 0}^{k} i^{n+1}}{\sum_{j = 0}^{k} j^{n}}$$