At a company, there are several workers, some of which are enemies. They go to their job with 100 buses, in such a way that there aren't any enemies in either bus. Having arrived at the job, their chief wants to assign them to brigades of at least two people, without assigning two enemies to the same brigade. Prove that the chief can split the workers in at most 100 brigades, or he cannot split them at all in any number of brigades.
Problem 1619
Official solution
Let's reformulate the problem in terms of graph theory. We can represent the workers as vertices of a graph, and an edge between two vertices indicates that the corresponding workers are enemies. The problem then becomes one of partitioning the vertices of this graph into cliques (complete subgraphs) such that no two enemies are in the same clique.
Given that the workers arrive in 100 buses, we can assume that each bus represents a clique (since no enemies are in the same bus). Therefore, we have 100 disjoint cliques. We need to prove that either we cannot partition the vertices into cliques of size at least 2, or if we can, we can do it in at most 100 cliques.
1. Initial Setup:
- Let be the singletons (vertices that are not part of any clique of size at least 2).
- Let be the cliques of size 2.
- Let be the cliques of size at least 3.
2. Observations:
- Observation 1: and cannot be adjacent (i.e., they are not enemies), otherwise, we could combine them into a clique of size 2, reducing the number of singletons .
- Observation 2: cannot be adjacent to any vertex (where is a clique of size at least 3), otherwise, we could combine and into the same clique, reducing .
- Observation 3: We cannot have adjacent to and adjacent to , otherwise, we could form two groups and reduce by 2.
3. Inductive Argument:
- Suppose we have the groups as described. Then are in different groups with (without loss of generality) . Now, become singletons, which forces the same observations 1, 2, and 3 to hold for .
- One more observation is that cannot be in the first groups, otherwise, we would reduce .
4. Contradiction:
- This process should create another groups with , implying .
- By the same reasoning, for every , which is a contradiction since is finite.
5. Conclusion:
- Therefore, we must be able to reduce and use induction because the total number of groups does not increase during the process. Hence, we can form at most groups, or we cannot form any groups at all.