A Conjecture on the Collatz Conjecture

Click For Summary
A JavaScript program has been developed to test integers against the Collatz conjecture, which states that any natural number will eventually reach 1 through a specific iterative process. The program reveals that the only number for which the number of steps to reach 1 equals the initial value is 5. The creator conjectures that this is the sole case among natural numbers, noting that as numbers increase, the number of steps generally grows larger, making the probability of steps equaling the initial number approach 0%. Additionally, a "Collatz tree" concept is introduced, outlining a method for generating new numbers based on specific rules. The discussion invites further exploration into the Collatz conjecture and related mathematical concepts.
Vodkacannon
Messages
40
Reaction score
0
I have created a program in javascript that has tested integers on the collatz conjecture.
Recall that the collatz conjecture says given any natural number n you must divide n by 2 if it is divisible by 2 and multiply n by 3 and add 1 if it is not divisible by 2. Repeat this process and you will always reach 1.

Well this program that I have created does exactly this: Determines if the amount of steps it takes to get to 1 is equal to the initial value used in the algorithm.

It turns out that after checking millions of numbers, the only number that equals the # of steps to get to 1 is 5.

I have conjecture that this is the only case possible, out of all natural numbers.

I also have an idea why. As n → ∞, # of steps → grows larger. (you can see this by looking at the program's output.)
But it does not always get larger. Some initial values have more steps that smaller initial values.
Still the general trend is that the steps required increases, thus the probability that nsteps = n, approaches 0%.

Please give me ideas, what else should I study about the Collatz Conjecture? What should I try to find out? Something more interesting.
 
Physics news on Phys.org
heres something that might peak your interest, the collatz tree.
start at 1. for the left node, multiply by 4 and add 1.
for the right node:
if evenly divisible by 3 no right node.
if leaves remainder of 1 mod 3, multiply by 4 subtract 1 and divide 3.
if leaves remainder of 2 mod 3, multiply be 2, subtract 1 and divide 3.
Code:
1--5--21--85
   |      113
   |      75
   3--13--53
      |   35
      |   23--93
      |   15--61
      17--69
      11--45
       7--29
       9
 
I am studying the mathematical formalism behind non-commutative geometry approach to quantum gravity. I was reading about Hopf algebras and their Drinfeld twist with a specific example of the Moyal-Weyl twist defined as F=exp(-iλ/2θ^(μν)∂_μ⊗∂_ν) where λ is a constant parametar and θ antisymmetric constant tensor. {∂_μ} is the basis of the tangent vector space over the underlying spacetime Now, from my understanding the enveloping algebra which appears in the definition of the Hopf algebra...

Similar threads

  • · Replies 7 ·
Replies
7
Views
6K
  • · Replies 2 ·
Replies
2
Views
5K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
5K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 6 ·
Replies
6
Views
8K
  • · Replies 3 ·
Replies
3
Views
782