How many ways are there to place distinct balls into distinct boxes such that exactly of the boxes do not have any balls?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Note that exactly two boxes are going to be filled.
Call them A and B.
Case I - There are 3 balls in A and 1 in B
This can be thought of as choosing which ball that would be there in B. This can thus be done in 4 ways
Case II - There are 1 balls in A and 3 in B
This can also be done on 4 ways.
Case III - There are two balls in A and two in B.
Think of this as choosing two balls which shall go to B. There are 6 ways.
Thus there are a total of 14 ways to distribute the balls in the two boxes.
Also, there are (5 choose 2) or 10 ways to choose the two boxes out of all five.
Thus, you can do it in 140 ways