A company puts five different types of prizes into their cereal boxes, one in each box and in equal proportions. If a customer decides to collect all five prizes, what is the expected number of boxes of cereals that he or she should buy?
TRY
Let $X$ be the number of boxes customer buys. For $i=1,2,3,4,5$, write
$$ X_{ij} = \begin{cases} 1, & \text{ith prize is inside jth box} \\ 0, & \text{otherwise} \end{cases} $$
As I understand the problem, the number of boxes is not given so we may write
$$ X = \sum_{j=1}^{\infty} \sum_{i=1}^5 X_{ij} $$
So
$$ E(X) = \sum_{j \geq 1 } \sum_{i=1}^5 E(X_{ij}) $$
We know $E(X_{ij}) = P(X_{ij}=1)$ so we need to find proobability that ith prize is inside jth box. Here is the part where I get stuck. Am I appraoching this problem the correct way?