bill's blog

Writeup: IMO 2004 Shortlist C1

Problem Statement

There are 10001 students at an university. Some students join together to form several clubs (a student may belong to different clubs). Some clubs join together to form several societies (a club may belong to different societies). There are a total of k societies. Suppose that the following conditions hold:

i.) Each pair of students are in exactly one club.

ii.) For each student and each society, the student is in exactly one club of the society.

iii.) Each club has an odd number of students. In addition, a club with 2m+1 students (m is a positive integer) is in exactly m societies.

Find all possible values of k.

Solution:

This problem was so troll lmao. I tried to do make up so many random functions to solve this problem but I realized the solution was actually really easy.

Consider the set S of ordered triples (student, club, society). We know from (iii) and (ii) that |S|=# of students in each club·# of societies the clubs belongs to=# of students in each club·# of students in each club - 12 but we also know that |S|=# of students·# of societies. But from (i) we know that # of students in each club·# of students in each club - 12=10001·5000 so k=5000.