So I've invented my own enumeration method that seems to me to be near the mark. What I need is either confirmation or the correct method using permutations and factorials and preferably with an explanation I can understand.
I've translated the issue into this scenario:
What are the odds for throwing at least four sixes with ten three-hundred-and-thirty-three sided dice at one time?
Here is what I've come up with:
⊢(six not)←|-\÷333 1 ⍝ 333 sided diceHera's a slightly less accurate alternative that might be more understandable:
0.003003003003003003 0.996996996996997
⍴throws←(10⍴2)⊤⍳2*10 ⍝ all possible throws of 10 dice 1 0 standing for six & not
10 1024
⍴wins←{⍵/⍨4≤+⌿⍵}throws ⍝ throws with at least 4 sixes
10 848
⍴probs←×⌿not six[wins] ⍝ probability for each throw
848
six not ×.* (4 10)(6 0) ⍝ (4 sixes & 6 nots) vs (10 sixes & 0 nots)
7.98704565936344E¯11 5.964275072811856E¯26
(⌈/,⌊/,+/)probs ⍝ max, min and sum
7.987045659363441E¯11 5.964275072811855E¯26 1.6833572880397535E¯8
⍝ expected max and min check out
'1 :',0⍕÷+/probs ⍝ so the odds are
1 : 59405095
Help will be gratefully accepted.What are the odds that at least four people in a room of ten were born on the Fourth of July?
Phil