Consider the shortcut function: $$f(n)=\begin{cases}(3n+1)/2\} & \text{if } (n\bmod 2)\equiv1 \\ \{n/2\} & \text{if } (n\bmod 2)\equiv0 \end{cases}$$
Define $f^x$ as the $x$'th iterate of $f$.
There is an initial number $n_0$ (i.e. a constant in the inequality equation) such that for all $n \in\mathbb{N}$ there is some $x$ such that $f^x(n) < n_0$. If someone confirmed/proved that this were true, would that mean that the sequence would never reach $\infty$, but might be open wether it would enter a non-trivial repeating cycle?
I.e. for all $n \in\mathbb{N}$ will there always exist some $x$ where $f^x$ is strictly less than $f^0$? I am just wondering if this have been proven. If so, is the proof simple? If my math-writings are wrong, please correct me. If someone proved it, would we rule out that it would enter infinity, or am my assumptions wrong?
Illustration
Set $n_0 = 27$. Start the iterate with $f(n_0)$.
We get: $27, 41, 62, 31, 47, 71, 107, 161, 242, 121, 182, 91, 137, 206, 103, 155, 233, 350, 175, 263, 395, 593, 890, 445, 668, 334, 167, 251, 377, 566, 283, 425, 638, 319, 479, 719, 1079, 1619, 2429, 3644, 1822, 911, 1367, 2051, 3077, 4616, 2308, 1154, 577, 866, 433, 650, 325, 488, 244, 122, 61, 92, 46, 23,...$
After $59$ steps we get number $23$ which is less than the initial number $27$.
So for $n_0=27$ there is some $x$ where $f^x < f^0$. In this case $f^{59} < 27$.
you find $x_0$ such that $n_1 := f^{x_0}(n_0) <n$
then you find $x_1$ such that $n_2 := f^{x_1}(n_1) < n_1$ etc ... and the sequence $(n_i)_{i \in \mathbb{N}}$ is an infinite decreasing sequence, which can't be. – Olivier Roche Oct 07 '19 at 06:41
What is $f^o$???
– Olivier Roche Oct 07 '19 at 07:32