Easier example that might solidify things. 10 different books to be divided between 2 people. A person is allowed to have no books.
Lets line up the books in a row (on a table perhaps):
B1 B2 B3 B4 B5 B6 B7 B8 B9 B10 |
They can either go to person A or person B. Let's just put person A on top of the table and person B below the table like so:
Person A
B1 B2 B3 B4 B5 B6 B7 B8 B9 B10 |
Person B
Each book can go "up" or "down" to get sorted to a respective person i.e.
Person A
Person B
Each book has 2 options, so we have the total cases = 2 x 2 x 2 ... x 2 (10 times) = 2^10. This is an almost identical reasoning to the houses qn.
Why do we use this method?
It is much more difficult to break the 10 houses up into different cases i.e.
Case X: A gets 1 house, B gets 3 houses, C gets 6 houses.
Total = 10C1 x 9C3 x 6C6
Case Y: A gets 2 houses, B gets 5 houses, C gets 3 houses.
Total = 10C2 x 9C5 x 3C3
There are many many (many) more cases to consider and this is too much to do....