[Math] Where is the Collatz conjecture proof wrong

collatz conjectureprovability

I am amateur and don't have very good understanding of mathematical proving. My proof is so simple i don't believe noone thought of this before. But I am so blinded by the hope it is correct, that I can't find any errors in it.

Here are all the conclusions I made in the process:

  1. You can always make smaller odd number from even, so we only need to
    prove that every odd number works.
  2. Out of the two ways (3n+1 and n/2) only the n/2 can be used to create n ≡ 0 (mod 3) from n-1, where n-1 ≡ 0 (mod 3) has to hold true
  3. n ≡ 0 (mod 3) always creates n ≡ 1 (mod 3) (EDIT: every odd n ≡ 0 (mod 3))
  4. therefore once we abandon n ≡ 0 (mod 3), we can never find any other n ≡ 0 (mod 3) later in the sequence
  5. in other words we can't compose any n ≡ 0 (mod 3) from smaller number
  6. But, we can "compose" any n !≡ 0 (mod 3) (sorry, if I invented the notation. !≡ means the remainder after division is not 0) from smaller number.
    • reverse Collatz Example: 5 => 10 => either 3 or 20
    • The only way to reverse n ≡ 2 (mod 3) is n*2, after which every n-1 ≡ 1 (mod 3)
    • n-1 ≡ 1 (mod 3) can be reversed in both ways, but the (n-1)/3 yielding n-2 will always be smaller then n
  7. If n !≡ 0 (mod 3) can be "composed" from smaller number, we need only to prove the Collatz conjecture works for the smaller number.
  8. which can be either n !≡ 0 (mod 3) and can be "compsed" from smaller number again or be n ≡ 0 (mod 3)
  9. So the only thing I have to prove now is that the Collatz conjecture works for every odd n ≡ 0 (mod 3)
  10. But since every odd n ≡ 0 (mod 3) will yield n+1 ≡ 1 (mod 3) and I already concluded that once we abandon n ≡ 0 (mod 3), no later number will be n ≡ 0 (mod 3), the Collatz conjecture works also for n ≡ 0 (mod 3)

I've already looked at this for two days and can't find any errors and it drives me crazy. Is it cyclic or something? Am I depending on my own proves that also depend on my own proves? Did I make algebraic mistake? Hopefully, some of you will be willing to help.

P. S. Please be mindful of my experience and don't use very mathematical language if not neccessary. I've tried to search for this and didn't understand many papers on this matter.

EXPLANATIONS:

  • "be composed of" means "is preceded by"

EDIT:

  • don't overlook EDIT in point 3
  • made the points ordered so we can reference them more easily.
  • added explanations

Best Answer

EDIT after OP edited the question.


Your reasoning fails after point $6$ (included). Indeed, you talk about a certain number in the chain being "smaller" or "bigger" than another, and then mistakenly apply this rule to multiple elements of the chain (for instance in your point $6c$).

This is not strong enough, as $n/2$ might be followed by $3(n/2)+1$, which is always bigger than your original $n$. And then the same behaviour might happen again, etc.

So you have not proved that every $n ≡ 1\ ( mod \ 3)$ eventually becomes smaller than $n$.

Nor have you proved that there does not exist a cycle other than $4\to2\to1\to4$, a problem that your reasoning did not address.

Related Question