Assuming the probability of getting an object opening a pack of a collection is uniform, what is the probability of getting 14 objects without a single duplicate if the collection is made of 24 objects?
I would like to know if my execution is correct:
$n = 24$
$k = 14$
$\binom{a}{b}$ is binomial coefficient
Total cases are the combination of 14 objects selected from 24 with repetition
Total cases = $\binom{n+k-1}{k}$ = 6.107.086.800
Good cases are the combination of 14 objects selected from 24 without repetition
Good cases = $\binom{n}{k}$= 1.961.256
$p(\text{E = no duplicates in 14 packages}) ={\text{good cases}\over\text{total cases}}=3.21144\times10^{-4}$ which is then 0.0321144%
is it correct?