I'm grappling with a problem involving seating arrangements in a room that features two circles of chairs. One circle consists of 11 chairs, and the other has 7, making a total of 18 chairs. The twist is considering scenarios with 20 people, focusing on the case where the chairs are indistinguishable. The challenge I face is understanding how to approach the situation where there are more people than available chairs, especially under the constraint of indistinguishable chairs.
Here's the original problem statement:
A total of 18 chairs are arranged in a room, forming two circles. One of the circles contains 11 chairs. Calculate the different ways twenty people can be seated in each of the following cases:
- Assuming the chairs are distinguishable.
- Assuming the chairs are indistinguishable.
For the first part, with distinguishable chairs, the calculation was straightforward. For the circle of 11 chairs, selecting 11 out of 20 people and arranging them yields $\binom{20}{11} \times 10!$ ways. For the circle of 7 chairs, choosing 7 out of the remaining 9 people and arranging them yields $\binom{9}{7} \times 6!$ ways. Multiplying these together gives the total number of arrangements.
However, I'm puzzled about how to approach the second part, where the chairs are indistinguishable, and there are more people than the chairs available. The usual method of considering all arrangements as a single possibility doesn't seem to fit well with the excess of people.
I'm seeking insights or methodologies to approach this scenario effectively. How should one consider the arrangements when the chairs are indistinguishable and not everyone can be seated?
For round seating of $n$ people in $n$ chairs, the formula is $n!$ if the chairs are distinguishable (=numbered), and $\frac{n!}{n} =(n-1)!$ if indistinguishable (=unnumbered) because rotations don't change relative positions of the people.
Firstly form $3$ groups of $\binom{20}{11},\binom97, \binom22$ people
These groups get automatically labelled by size, call them group$A,B,C$
Now if the chairs are numbered, the people can be seated in $[1]:\binom{20}{11}11! \times\binom977!$ ways
and if unnumbered, in $[2]: \binom{20}{11}10! \times\binom976!$ ways