A phone company starts a new type of service. A new customer can choose phone numbers in this network which are call-free, whether that number is calling or is being called. A group of students want to use the service.
(a) If , show that there exist 2 students who will be charged when speaking.
(b) It , show that there is a way to arrange the free calls so that everybody can speak free to anybody else in the group.
[i]Valentin Vornicu[/i]
Problem 1450
Official solution
### Part (a)
1. Graph Representation: Represent the problem using graph theory. Let each student be a vertex in a graph with vertices. Each student can choose other students with whom calls are free. This can be represented as a directed graph where each vertex has an outdegree of at most .
2. Contradiction Approach: Assume that all calls between any two students are free. This implies that the underlying undirected graph is a complete graph .
3. Degree Condition: In a complete graph , each vertex has a degree of . However, in our directed graph, each vertex has an outdegree of at most . Therefore, the total number of directed edges is at most .
4. Edge Counting: In a complete graph , the total number of edges is . For , we have:
Simplifying this inequality:
This contradicts our assumption that .
5. Conclusion: Therefore, there must exist at least one pair of students who will be charged when speaking.
### Part (b)
1. Graph Representation: Again, represent the problem using graph theory. Let each student be a vertex in a graph with vertices. Each student can choose other students with whom calls are free.
2. Construction of Free Call Arrangement: We need to show that there exists a way to arrange the free calls such that everybody can speak free to anybody else in the group.
3. Perfect Matching in Bipartite Graph: Consider a bipartite graph with two sets of vertices and , each containing vertices. Each vertex in is connected to exactly vertices in , and vice versa. This ensures that each student can choose other students for free calls.
4. Hall's Marriage Theorem: By Hall's Marriage Theorem, if every subset of vertices in is connected to at least as many vertices in , then there exists a perfect matching. Since and each vertex has connections, the conditions of Hall's Marriage Theorem are satisfied.
5. Conclusion: Therefore, there exists a way to arrange the free calls such that everybody can speak free to anybody else in the group.