The Collatz conjecture states that iteratively applying the map
$$f(n) = \begin{cases} n/2 &\text{if } n \equiv 0 \pmod{2}\\ 3n+1 & \text{if } n\equiv 1 \pmod{2} .\end{cases}$$
to any positive integer $n_0$ eventually yields $1$.
I'm looking for other non-obvious examples in mathematics of (proven or conjectured) statements of the form:
Take any object $x$ from a set $X$ and repeatedly apply the (not necessarily arithmetic) transformation $\sigma:X\rightarrow X$. You will eventually reach $y\in X$ after a finite number of steps.
The difference between this pattern and an attractor in physics is that here, the system is discrete and converges within a finite number of steps, and that all elements of the set are inside the "basin of attraction" (also, it is possible for even the fixed point to escape again for a cycle, as is the case with the Collatz map for $1 \rightarrow 4 \rightarrow 2 \rightarrow 1$).
Trivial examples I can think of from the top of my head:
- Take any integer $n$ and repeatedly subtract $1$. You will eventually reach $0$.
- Take any polygon and repeatedly cut off a triangle whose one edge connects two corners of the polygon. You will eventually be left with a triangle (though of course this triangle is only unique if you consider it through the lens of graph topology).
- Take any permutation $a \in S_n$ in list form and repeatedly traverse it from left to right, exchanging any two adjacent elements that are in the wrong order. You will eventually reach the trivial permutation $1 \in S_n$ (Bubble sort algorithm).
The problem is that in these examples, the fact that all initial states converge and even the number of steps towards convergence are immediately obvious and predictable. I really like the way the convergence time of the Collatz map behaves pseudorandomly. Are there any more examples with that property?
Let the set $X$ the positive integers which are divisible by $9$. Let the transformation $\sigma$ be the operation of computing the digit sum.
Then taking any element from $X$ and applying repeatedly $\sigma$ gives $y=9$.