If n dice are rolled (n>6), what is probability that each of the six numbers will appear at least once?
- Dice of 3 numbers:
I've tried some hard solution making a manual exercise to get the formula with a dice of 3 numbers (i.e. A B C).
If I throw the dice n times the possible values are $(1/3)^n$ (3 times = 27, 4 times = 81, 4 times = 243) meanwhile the different values are:
- 3 dice: ABC ACB BAC BCA CAB CBA = 6
- 4 dice: AABC AACB ABAC ABCA ACAB ACBA BABC BACB... = 36
- 5 dice: AAABC AAACB AABAC AABCA... = 150
I'm sure that previous values are true because I've calculated them manually. From there I've tried to get the formula to solve the problem and it works fine the following (for a 3 number dice):
3 dice are rolled: $3*(R_0+(2^{(3-1)})-2)/3^3 = 6/27 = R_1$
4 dice are rolled: $3*(R_1+(2^{(4-1)})-2)/3^4 = 36/81 = R_2$
5 dice are rolled: $3*(R_2+(2^{(5-1)})-2)/3^5 = 150/243 = R_3 \ldots$
The formula just works refering to the previous result because as you can see it is always repeated 3 times, so I've named it as $R_1, R_2, R_3 \ldots (R_0 = 0)$.
- It seems to be correct so I tried to figure out the formula for a F faces dice thrown n times:
$F*(R_0+((F-1)^{(n-1)})-(F-1))/F^n$
I've tested it but it does not work and I cannot find the issue.
Can you please help me to solve this problem?