We have $1000$ balls, $750$ red and $250$ blue. We distribute them uniformly at random into $10$ bins. What is the probability none of these bins is at least $1/3$ blue?
More generally I'd like to consider the case where you have $n$ balls and $k$ bins, such that $3/4$ of the balls are red and $1/4$th are blue. What is the probability no bin has $1/3$ blue?
Approximations are also desirable, mostly ones that give a probability strictly bounded below the true probability.
Let's distribute the 250 blue balls randomly in the 10 bins. So we will choose 1 to 10 bins out of the 10 bins and distribute the blue balls to them randomly, so that each set contains at least one ball, which is $$\sum_{i=1}^{10} {{10}\choose{i}}\cdot{{250 - 1}\choose{i-1}}$$ if the (250 - 1) term seems odd to you, check the stars and bars method.
So now for 500 out of the 750 red balls we know exactly where they should go (namely for each blue ball we have to assign two red balls in order to keep on the one third condition.
we still have 250 red balls we can distribute randomly, so it's again $$\sum_{i=1}^{10} {{10}\choose{i}}\cdot{{250 - 1}\choose{i-1}}$$ for the 250 rest red balls. Hence the total answer should be: $$\left( \sum_{i=1}^{10} {{10}\choose{i}}\cdot{{250 - 1}\choose{i-1}} \right)^2$$
Edit Instead of this sum you can use the Formula: $${250 + 10 - 1}\choose{10 - 1}$$ for which there are many explanations, one of them is, the problem is equivalent of having 250 + 10 balls distributing them to 10 slots but every slot must have a ball at least. Another explanation is found in the second theorem of stars and bars. The total answer in this case will be: $$\left({250 + 10 - 1}\choose{10 - 1}\right)^2$$