Discrete Mathematics Problem - Grouping Students
Source: Sent to me by Vinayak Gagrani (CSE IITB Alumnus 2013) Problem: There are 289 students. We have to divide them into 17 groups of 17 each every day. The groups have to be such that no two students who have been previously on some group together can be formed a group again. How many days can we do this ? Extension: Can this be generalized for any N^2 students? Solution: Highlight the part between the * symbols for the answer. * Answer for 289 = 17^2 students: 18 days. Upper bound: each day, a student shares a group with N - 1 = 16 others, and over d days must meet only distinct people, so d(N-1) <= N^2 - 1, i.e. d <= N+1 = 18. Construction achieving 18 (works for any prime or prime power N, via the affine plane / finite field of order N): label students by pairs (m, k) with m, k in Z_17. Day 0: group g = {(g, k) : all k}... more precisely, on day 0 group by the first coordinate; on day j = 1..17, put students (m, k) and (m', k') in the same group iff k + m*(j-1) ma...