The famous conjecture:
Let $$ f(n) = \begin{cases} n/2 & \quad \text{if } n \text{ is even}\\ 3n+1 & \quad \text{if } n \text{ is odd}\\ \end{cases} $$ The Collatz Conjecture states that when applying this function repeatedly to any natural number you will eventually reach 1. For example, starting with $10$ we generate the sequence $$ \{ 10,5,16,8,4,2,1 \} $$
Considering a popular approach to a proof where we want to eliminate sets of natural numbers that reach $1$ until only the empty set remains,
Is it true that you need only show all odd numbers reach $1$?
My reasoning is that if your current number $n$ is even, then either
- it is twice an odd number, or
- dividing by $2$ repeatedly will either
- reach an odd number greater than $1$ or
- $n$ is a power of $2$ that will approach $1$ directly
I think then that the question of $n$ reaching $1$ can be reduced to the question of that first odd factor of $n$ reaching $1$.
Probably there are stronger statements that would cover this.