In the lake, there are $23$ stones arranged along a circle. There are $22$ frogs numbered $1, 2, \cdots, 22$ (each number appears once). Initially, each frog randomly sits on a stone (several frogs might sit on the same stone). Every minute, all frogs jump at the same time as follows: the frog number $i$ jumps $i$ stones forward in the clockwise direction. (In particular, the frog number $22$ jumps $1$ stone in the counter-clockwise direction.) Prove that at some point, at least $6$ stones will be empty.
Problem
Source:
Tags: combinatorics
12.08.2021 16:28
12.08.2021 20:02
30.09.2024 02:52
Work in $\mathbb{Z}_{23}$ and let $t$ be the number of minutes that passed. Label the frogs $F_1,F_2,\dots,F_{22}$ and let each frogs position be given by $f_i+ti$, where $f_i$ is its starting position. Call a pair of frogs a good pair if they are sitting on the same stone at a certain time. Claim: For any two frogs, there exists a $t$, $0\leq t \leq 22$, such that they are a good pair at time $t$ It suffices to have that $f_i+ti= f_j+tj$, but as $i\neq j$ this will have a solution for $0\leq t \leq 22$. Now there must exist a $t$, $0\leq t\leq 22$, such that the number of good pairs at time $t$ is at least $$\frac{1}{23}\binom{22}{2}=\frac{231}{23}$$But as this is non integral it has to be at least $11$. Now assume FTSOC that only $5$ stones were empty (or less). Then first drop frogs on the remaining $18$ stones, so far creating no good pairs. Then drop the remaining $4$ frogs one by one. The first will create at most $1$ good pair, the second at most $2$, and so on. As $1+2+3+4<11$, we have a contradiction.
14.11.2024 08:29
Note that there are exactly $\binom{22}{2}$ pairs of frogs on the same stone in total. At any instant, if there are at least $18$ occupied stones, then there are at most $\binom{5}{2} = 10$ pairs of coinciding frogs. This leads to $230$ pairs in total. But $230 < 231 = \binom{22}{2}$, contradiction. $\square$