A musical band has to have at least one member. It can contain at most one drummer, at most one pianist, at most one bassist, at most one lead singer, and at most two background singers. How many possible bands are there if we consider any two drummers indistinguishable, and the same holds true for the other categories, and hence call two bands the same if they have the same number of members of each category? Justify your answer.
There are a few methods to solve this problem but being compelled to use the product rule introduced in this chapter we can use the following reasoning: treat each of the four types of member who can appear at most once (drummer, pianist, bassist, lead singer) as 0 (not present) or 1 (present), thus having two possible values, and treat background singers as 0 (none present), 1 (one present) or 2 (two present), thus having 3 possible values and multiply them all. To get the final result remember to subtract one case where all values are 0 (we need at least one band member), giving rise to the following calculation:
\[2 \cdot 2 \cdot 2 \cdot 2 \cdot 3 - 1 = 47\]
We can verify the result above with an alternative (though much longer and painstaking) method of calculation using combinations (which are introduced a bit further in the book):
Adding all those numbers we independently get 47 as a result, which should give us more confidence that our first solution was correct and the approach was valid.