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.
You're right, if you show the conjecture holds true for odd numbers, then you're basically done by your logic. Similarly, you could just prove it for even numbers.
However, it boggles the mind how this would simplify the proof of the full conjecture, considering that for any odd number, the next step in the Collatz iteration gets you to an even number. In other words, you can't really escape not considering even numbers.
If you're interested in reducing the Collatz conjecture, perhaps you'd be interested in the following. You really "just" need to show that
1) There are no cycles.
2) No number escapes to infinity.