Question:
Say I have a set of 24 dice that have different letters on them, what is the chance that in any roll a certain combination of letters appears at least once?
Combination I want:
{a, a, b, c, d, e}
(a is duplicated on purpose)
Dice:
The 24 dice would come from a pool of 4 different colors, with each color having different possible letters
6 red dice: {a, b ,c, z, z, z}
6 blue dice: {a, b, d, z, z, z}
6 green dice: {d, e, z, z, z, z}
6 black dice: {c, z, z, z, z, z}
(z represents undesirable rolls to fill out the 6 sides of the die)
Problem:
I really don't even know how to start on this. I've looked up other questions about probability and set theory, but I haven't found anything on dice with repeating letters or on sets with multiple duplicate elements.
As an aside, I'd eventually like to implement the solution in python so I can check many subsets at once, so any answers put in coding language would be heavily appreciated.