A Different Perspective
(Xu Chen here) Today I am going to talk about a subtle but important thought process for many problems, which is how you visualize the objects you are working with. This is more of an intuitive idea than rigorous math, so forgive me if not everything is super clear in this post. How you look at the problem can heavily influence what ideas you can come up with: The solution often follows from a good understanding of the underlying structure. Example 1. Let's start with a simple example. (USAJMO 2019/2) Let $\Z$ be the set of all integers. Find all pairs of integers $(a,b)$ for which there exist functions $f:\Z\to\Z$ and $g:\Z\to\Z$ satisfying $$f(g(x))=x+a\quad \text{and}\quad g(f(x))=x+b$$ for all integers $x$. Hopefully it is clear that we cannot treat this as a standard FE, but must instead consider some combinatorial ideas. Let's think of $\Z$ on the number line. We draw red arrows to represent $x\mapsto f(x)$ and blue arrows to represent $x\mapsto g(x)$: One cond...