2
$\begingroup$

Five balls of different colors are to be placed in three boxes of different sizes. Each box can hold all five balls. The number of ways in which we can place the balls in the boxes so that no box remains empty is

The solution to this problem has been given using the inclusion-exclusion approach in this link.

But I approached the problem from a different perspective and wanted to know where am I going wrong. Here's my solution:

So to ensure that no box remains empty, here are the possible configurations: (3 1 1) (2 2 1) Since the boxes are of different size so altering the configuration will also give rise to another possibility.

Now going with the first configuration i.e. (3 1 1), we see that:

The number of ways to select 1 box which will have 3 balls is 3C1. Now the number of ways to select 3 balls from 5 different balls is 5C3.

Hence the ways to put 5 balls in any of the three boxes will be: 3C15C3 Now for the other box, we have 1 box choice and 1 ball choice of remaining 2 balls. So the combination will be: 2C12C1

The last box will be chosen in 1 way and so will be the last ball.

Hence total possible ways:= 3C15C32C22C1=120 ways.

Now going with the second case that is: 2 1 1: Number of ways to select the box is: 3C1 Number of ways to select 2 balls: 5C2 Hence the configuration results in: 3C15C2 Similarly for the remaining two configurations we have: 2C13C2 and 1 ways.

Now if we compute combinations of second case we get: 3C15C22C13C2=180 ways. So the total number of ways should be 120+180 that is 300 ways. But answer seems to be 150. I know I have considered some factors twice, but couldn't figure it out where exactly it's happening. Kindly help me.

$\endgroup$
1
  • $\begingroup$ Welcome to MathSE. This tutorial explains how to typeset mathematics on this site. $\endgroup$ Commented Nov 24, 2019 at 16:15

1 Answer 1

2
$\begingroup$

For your first case, you should have $$\binom{3}{1}\binom{5}{3}\binom{2}{1}=60.$$ You wrote $\binom{2}{1}\binom{2}{1}$ as the number of ways to place the balls in the boxes that will contain one ball. However, it should be just $\binom{2}{1}$ since you only need to choose 1 ball from the 2 remaining to put in the second box, and then there will be only one choice for the last box.

Your second case should be for the configuration 2, 2, 1, not 2, 1, 1. So there are $\binom{3}{1}$ ways to choose the box that will have 1 ball and $\binom{5}{1}$ ways to choose the ball for that box. For the remaining two boxes, there are $\binom{4}{2}$ ways to choose the two balls for one of the boxes, and only one choice for the balls in the last box. So we get $$\binom{3}{1} \binom{5}{1}\binom{4}{2}=90.$$

So in total, $60+90=150$.

$\endgroup$
11
  • $\begingroup$ Hmm.. I get you, but shouldn't the first case be like this: I am first selecting a box out of 3 distinct boxes. That can be done in 3C1 ways. now I am selecting 3 balls out 5 distinct balls, that can be done in 5C3 ways. Now out of remaining 2 boxes I have to select 1 box as both of them are distinct. This can be done in 2C1 ways and right after that I have to select one ball out of the two remaining balls, that can be done in 2c1 ways. So in total shouldn't it be like: $\endgroup$ Commented Nov 24, 2019 at 16:03
  • $\begingroup$ 3C1(which is a selection of first out of three boxes)X5C3(which is selection of 3 balls of 5 balls in total)X2C1(which is selection of second of remaining two boxes)X2C1(which is selection of one ball out of remaining 2 balls)X1(which is remaining choice for the final box)X1(which is remaining choice for the final ball) $\endgroup$ Commented Nov 24, 2019 at 16:06
  • $\begingroup$ The way you made the selection, shouldn't it be when the boxes and final balls are identical? Since putting two distinct balls into the two distinct boxes will matter? and so 2C12C1 instead of just 2C1? $\endgroup$ Commented Nov 24, 2019 at 16:07
  • 1
    $\begingroup$ No, by choosing a box and then choosing a ball you are double counting. Say the last two boxes are B and S (big and small) and the last two balls are numbered 1 and 2. According to you, the number of ways to place the balls in the boxes is $\binom{2}{1}\binom{2}{1}=4$. However, there are only two choices - B1 and S2, or B2 and S1. Since the boxes are different sizes, we can start with the bigger of the two and say there are 2 choices for the ball that goes in that one. Then there is only 1 choice for the smaller box. $\endgroup$
    – kccu
    Commented Nov 24, 2019 at 16:09
  • $\begingroup$ If the boxes and balls were indistinguishable, then there would only be 1 choice - one ball in each box. $\endgroup$
    – kccu
    Commented Nov 24, 2019 at 16:09

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .