I have a set of 54 numbers $[1,2,3,4, ... 54]$. After choosing one at random, it is replaced. The sequence continues until all numbers have been drawn at least once. How do I calculate the probability that all numbers will have been drawn at least once after drawing $n$ times, where $n > 54$.
I have tried calculating it by making a sequence of the probabilities of choosing a number that you have not already chosen, i.e. $\frac{54}{54},\frac{53}{54},\frac{52}{54},\frac{51}{54},... \frac{1}{54}$, but multiplying them all together gives the probability of drawing all numbers in only 54 tries, and I don't know how to calculate the formula for other values of $n$.
This is represented by $\binom{3}{2}$. It basically means choosing 2 out of 3 elements.
– Arpan Mar 14 '15 at 17:38