Hi all,
I solved it in the following way:
Two offices for four employees and each office can have 0 to four employees.
Now Imagine there are two columns O1 and O2 representing the offices and there are the the following possibilities for allocation.Also note that in each office order doesn't matter ; all that counts is who all I am selecting for first office and thereby implying that the selection for the other office is already done.In other words if I select for O1 a certain set of people then the remaining people will automatically be selected to O2.Now let's consider the possibilities.
1)O1 : 0 people,O2 : 4 people
Number of ways of doing this is only one.note that order doesn't matter
2)O1 : 1 person O2: remaining 3 people
First let's select for O1 there are 4C1 ways and each way O2 people automatically gets selected
3)O1: 2 people O2 remaining 2 people
4C2 ways notice O2 automatically gets selected.
In this ways all cases are ored as 1 + 4C1 + 4C2 + 4C3 + 4C4 + 1 = 16 ways
Notice in each case I am considering the following for O 1 and O2 : 0,4. 1,3. 2,2. 3,1. 4,0.
Posted from my mobile device