Take $4$ random numbers in the range of 0-255.
What is the chance that three of them fall into the lower 32 (0-31) and one falls into the higher 32 (224-255), OR one falls into the lower 32 and three fall into the higher 32?
The answer is $\left(\frac{1}{8}\right)^{3}$ (I've written a script that runs 1000 loops)
The question is: Why?
Thanks!
Disjoint events have additive probabilities.
The count for disjoint success events among a sequence of independent and identically distributed trials is a Multinomially Distributed Random Variable.
Thus the probability is $\bbox[lemonchiffon]{\tbinom 43 {(\tfrac{32}{256})}^3\tfrac{32}{256}+\tbinom 41 \tfrac{32}{256}{(\tfrac{32}{256})}^3}$, which simplifies to your answer.
That is all.