Introduction
Preliminaries on the Collatz Conjecture.
Collatz function F:NβN defined as:
The problem asks whether βjβN,βnβN:Fj(n)=1. We still don't know if this is true (since 1937), but it is conjectured to be so by many. In this work, we will approach the problem in two ways:
Using binary trees to hope for a proof-by-contradiction opportunity
Extending the operation to real numbers and analyzing patterns
Reducing to Odd Numbers
It is immediate to observe that showing the conjecture of odd numbers suffices; even numbers eventually reduce to odd numbers via n/2. For this purpose, we have the following two functions:
Reduced Collatz function R:OβO defined as:
where x is the largest number such that result is an odd number.
Reduced Collatz Initializer function R0β:NβO defined as:
where x is the largest number such that result is an odd number.
Last updated