What is the smallest number of tosses that need to be done to get all the possible outcomes $\{1, 2, 3, 4, 5,6\}$ of a right dice with a reliability of $0.99$?
My attempt is to use the Bernoulli scheme and the Moivre–Laplace theorem: $$P\left(\left|\frac{\mu}{n}-p\right|<\delta\right)=2\Phi\left(\delta \sqrt{\frac{n}{p \cdot q}}\right)=0.99$$ but I don't know how to define $\delta$ here.
you want to calculate the probability that 6 events all happen. This can be done with inclusion exclusion.
We get $\sum\limits_{i=0}^6 \binom{6}{i} (-1)^i (\frac{i}{6})^N$ which we can approximate from above as $1-6(5/6)^N$ so we are going to require $6(\frac{5}{6})^N < 1/100$. we can solve for $N$ and we get $N=\frac{-log(600)}{log(5)-log(6)}$ which is approximately $35.086$, so if I had to guess I would say $35$ is the first value, although apparently I got it wrong and it's $36$, but to be fair with $35$ you get approximately $0.9898$. Unless there is something wrong with my code (which I include next).