Q: You are given two urns and 5 black and 5 white balls. An urn will be picked at random and a ball drawn from it. If the ball is white you win. How would you distribute the balls so as to maximize the chances of winning? The Moscow Puzzles: 359 Mathematical Recreations (Dover Recreational Math) A: Put in 1 white ball in one urn and the remaining 4 and the other 5 black balls in the other urn. This maximizes your chances of winning. If the urn with the 1 white ball is chosen you win with 100% probability, if the other urn is chosen you win with probability = \(\frac{4}{9}\). This adds up to $$ P(win) = \frac{1}{2}\times 1 + \frac{1}{2}\times\frac{4}{9} = \frac{13}{18} $$ You can extend this recursively just for kicks. For example if every urn had two urns inside them and you had to fill them up with the balls to maximize you chances how would you do it? It is the same logic, one white ball in each and the last one should have all the remaining (shown in figure) In this case yo...