31st IMO 1990 shortlist

------
 
 
Problem 2

11 countries each have 3 representatives. Is it possible to find 1990 committees C1, C2, ... , C1990 such that each committee has just one representative from each country, no two committees have the same members, and every two committees have at least one member in common except for the pairs (C1, C2), (C2, C3), (C3, C4), ... , (C1991, C1992), (C1992, C1)?

 

Answer

Yes

 

Solution

Consider the more general case of m countries and n committees. A committee can be represented as a sequence of m digits, where each digit is 1, 2, or 3 (so the kth place determines whether the member from country k is the 1st, 2nd or 3rd). No two sequences can be identical and if we arrange them in a circle, then adjacent sequences have no match, whereas other pairs match in at least one place.

A little experimentation suggests it is possible provided n is not too big relative to m. Assuming it is possible, there are two approaches to this type of problem. One must either find some explicit solution, often using mod. Or one must show how a solution for (m, n) gives rise to a solution for larger (m, n).

Suppose A1, A2, ... An is a solution for (m, n) and k <= m (so each Ai is a sequence of m digits chosen from 1, 2, 3). Then consider:
A1 3
A2 1
A3 2
A4 1
A5 2
...
Ak-2 1
Ak-1 2
Ak 3
Ak-1 1
Ak-2 2
...
A3 1
A2 2

For A2 down to Ak-1 we alternate between 1 and 2 for the n+1th country to ensure that adjacent committees do not overlap (so depending on whether k is even or odd, we will end up with 2 (as shown) or 1 for Ak-1. From the bottom A2 up to Ak-1 we alternate between 2 and 1, so that each Ai appears once with 1 and once with 2 (for 1 < i < k), thus ensuring no duplicate committees. For A1 and Ak we cannot use 1 or 2 for country n+1, so we use 3. Thus we derive a solution for (2k-2, n+1) from the solution for (m, n). (Finally, note the slight subtlety that this even works for m = k, even though in that case we do not have any overlap between A1 and Ak, because we get the overlap on country n+1.)

Note that 210 = 1024, but we do not quite double m each time, so starting from (3, 1) (with the trivial solution 1, 2, 3) looks tight. Indeed we get (4, 2), then (6, 3), so at best (6·256, 11) which is not good enough). However, it is not hard to construct (6, 2): 11, 22, 31, 12, 21, 32. Now we get successively, (10, 3), (18, 4), (34, 5), (66, 6), (130, 7), (258, 8), (514, 9), (1026, 10), (1990, 11).

 


 

31st IMO shortlist 1990

© John Scholes
jscholes@kalva.demon.co.uk
7 Aug 2003
Last updated/corrected 7 Aug 2003