Ponder This Challenge - February 2026 - Blot-avoiding backgammon strategy
- Ponder This
We are given a strange analog clock - its dial has no markings, and although it has three hands that move continuously (not in steps), they are all of the same length and are indistinguishable. Quickly it becomes obvious that the clock is far from useless, since we can usually deduce the time from the cyclic triple of relative angles between its three hands.
However, there are still many moments in time that cannot be safely deduced from the state of the clock, because there are other moments in time that result in the same relative angles.
Here are some examples of both unique and undeducible clock configurations. Note that the first angle denotes the position of the first hand encountered clockwise from the unmarked 00:00:00 point, the second angle denotes the space between the first and second hands, and the third angle is between the second and third hands:
Your goal: With the usual conventions of 60 seconds per minute (and full rotation), 60 minutes per hour (and full rotation), and 12 hours per full rotation, determine the number of moments in time that cannot be deduced.
A bonus "*" will be given for finding the "worst" convention, in the following sense: The clock still represents seconds, but the convention is now that there are seconds in a minute, minutes in an hour, and hours per rotation, such that and . What choice of yields the largest finite number of moments that cannot be deduced? Give both and the number of moments in time that cannot be deduced.
The expected numerical solutions are:
This time, the phrasing of the puzzle, even after corrections, remained confusing to many solvers and we apologize for this. However, most wrong answers arose from the initial thinking that one should consider time to be discrete, looking only at moment of the form HH:MM. The riddle explicitly noted the clock's hands move continuously, and hence simple enumeration of moments of the form HH:MM is not sufficient to solve the riddle; a different approach is required.
We can model the current time as a value and the locations of the clock's hands become
Let us define a three-component vector . Use the indices , i.e. , , .
Now, an ambigous moment arises from two distinct times such that we can permute the elements of and rotate them (i.e. add some modulo 1) and obtain . Hence, let be some permutation and be the rotation value, and we consider the system of three modular equations:
Subtracting the third equation from the first two, we obtain a system of two modular equations without :
Such modular equations can be solved using standard linear algebra. We demonstrate this in the case . In this case we obtain the modular equations
i.e.
Which reduces to finding solutions to the linear system
For .
This allows collection of all the possible ambiguous times. Situations like 03:00:00 and 09:00:00 still needs to be carefully ruled out.
The solution can be found manually; the goal of the "*" part was to encourage automation that will allow systematic checks for all (H,M,S) systems. However, some of those system yields infinite number of ambiguous moments; the intention was to find the maximum finite number.