Scenario
Given 6 scientists, 3 baristas, 2 cooks and 4 mathematicians, how many ways can they be arranged in a row so no 2 mathematicians are next to each other?
Method 1
Arrange 15 people in a row, subtract the ways in which two mathematicians are grouped together, subtract the ways in which three mathematicians are grouped together, subtract the ways in which four mathematicians are grouped together, subtract the ways in which there are two groups of two mathematicians grouped together. $$ 15!-11!(12C3)(3P3)(4C2)(2P2)-11!(12C2)(2P2)(4C3)(3P3)-11!(12C1)(4P4)-11!(12C2)(2P2)(4C2)(2P2)(2C2)(2P2)=4.11\times10^{11} $$
Logic behind first subtracted term: There are 12 slots between 11 people, choose 3 slots (fill 1 slot with 2 mathematicians), permute the 3 slots, choose 2 mathematicians from the 4 mathematicians, permute the two mathematicians within the 1 slot.
Method 2
$$ (11P11)(12P4)=4.74\times10^{11} $$
Permute the 11 people (other than the mathematicians). Slot 4 mathematicians into the 12 slots between the 11 people, 1 mathematician into each of the 4 slots. Permute the 4 slots.
My Questions
- Why is method 1 presently undercounting?
- How can method 1 be corrected to give the correct answer calculated in method 2?