Given 5 fair, 6-sided dice, calculate the probability of an equal or greater number of dice showing 1 appearing than the number of dice showing 4,5, and 6 combined.
For example: if 5 dice are rolled and show:
1,1,1,4,5: this means 3 dice showing 1's > 2 dice showing 4+ = fulfills condition
1,1,2,5,6: this means 2 dice showing 1's = 2 dice showing 4+ = fulfills condition
5,2,1,3,5: this means 1 dice showing 1 < 2 dice showing 4+ = fails condition
Edit:
I began by listing combinations that fulfill the condition from most number of 1's rolled to least:
1,1,1,1,1 = 1
1,1,1,1,2+ = 5 possibilities * 5 positions = 25
1,1,1,2+,2+ = (5*5) possibilities * (5+5) positions = 250
1,1,(2,3),2+,2+ = (5*5*2) possibilities * (5*5) positions = 1250
1,(2,3),(2,3),(2,3),2+ = (5*2*2*2) possibilities * (5*4) positions = 800
So Probability = (1+25+250+1250+800)/5^6
which is: 0.1488
This seems high!
Your $1,1,1,2+,2+$ should have $5 \choose 2$ positions, which happens to be equal to $5+5$. Your $1,1,(2,3),2+,2+$ includes some cases like $1,1,2,5,6$ which fail. It should be $1,1,(2,3),(2,3),2+$. It also triple counts cases like $1,1,2,2,3$, because each of $2,2,3$ can be the $2+$ Both are true in the next line as well. Finally, the denominator should be $6^5$, not $5^6$