Problem:
Seven people sit at a round table with 10 chairs. Show that there are three consecutive chairs that are occupied.
Solution:
Number the chairs from 1 to 10. There are 10 groups of three consecutive chairs:
{1, 2, 3}, {2, 3, 4}, {3, 4, 5}, {4, 5, 6}, {5, 6, 7}, {6, 7, 8}, {7, 8, 9}, {8, 9, 10}, {9, 10, 1}, {10, 1, 2}
Each of the seven people will belong to three of these groups,
and 21 people have to be allocated to 10 groups.
Since 21 = 2 * 10 + 1
the generalised pigeonhole principle guarantees that some group must contain three people.
Reference 1: Pigeonhole principle:
If n + 1 or more objects are placed into n holes, then some hole contains at least two objects.
Reference 2: Generalised pigeonhole principle:
If at least mn + 1 objects are placed into n holes, then some hole contains at least m + 1 objects.
Question:
Q1:
If I look at number 1, it belongs to {1, 2, 3}, {9, 10, 1}, {10, 1, 2}; however, this number 1 is the chair number.
So what is the reasoning behind "seven people will belong to three of these groups" and 21 people have to be allocated to 10 groups.
Q2:
About "21 people have to be allocated to 10 groups.", I assume the each group is a pigeonhole, each pigeon can go to multiple holes. Then what exactly does the word "allocated" mean in this context?
In general, I don't quite understand how a single pigeon can go to multiple holes.
Your help is appreciated.