Disclaimer: these are my personal solutions; they have not been reviewed, so be careful relying on them as there might be errors. Some competitions may have official solutions from the contest publishers which you may wish to refer to instead if you’re looking for verified solutions.
Problem A1
Let be a real-valued function on the plane such that for every square in the plane, . Does it follow that for all points in the plane?
Solution
Open to see the solution; try solving it first!
Let’s consider a grid of points arranged in alphabetical order, from left to right and top to bottom, such that point has position and the other points are displaced from by an arbitrary real value in a given direction, namely:
- is at position
- is at position
- is at position
- is at position
- is at position
- is at position
- is at position
- is at position
- is at position
We can visualize this1 as follows:
We can see that this arrangement includes the following (small) squares:
As well as the square at a angle and the grand square :
Starting with the small squares, we know that the following hold:
We can add all of these equations together to form the following:
Rearranging this to group by similar factors and grouping accordingly, we have:
Since one of the terms is now the grand square , the value of that term is zero by problem definition. Similarly, the second term is the square , so that term is also zero for the same reason.
Thus, we are just left with
which means that . However, recall that represents an arbitrary point in the plane, so this shows that .
The diagrams on the page were programmatically defined via g9, an open source JavaScript toolkit for interactive visualizations. ↩︎