In the Collatz Conjecture, if the odd multiplier is changed from three to five, what is the outcome for a starting value of seven? Does the Collatz sequence converge to one or diverge? (Reference link: Collatz Data/Proof of Collatz Conjecture)
We know that division by 2 or by 4 occurs 75% of all possible divisions in the Collatz process according to the Law of Large Numbers ... That leaves at most 25% of all possible divisions by 2^k > 4. That fact explains the divergent tendency of the Collatz sequence starting at 7 with an odd multiplier equal to 5. However, there is an extremely unlikely possibility that the Collatz sequence could converge to one if 5n + 1 = 2^k for an extreme value of n.
I strongly believe this problem is undecidable!
Mathematica 11 Code for Collatz Processing: f[l_]:=( n = l;i=0; Print[n]; While[n>1,n = 5n +1; x = n; While[ EvenQ[x],x = x/2]; n=x; Print[n]; i = i + 1; ]; Return[i] );
f[7] = ? (Undecidable)
{7, 9, 23 , 29, 73, 183, 229, 573, 1433, 3583, 4479, 5599, 6999, 8749, 21873, 54683, 34177, 85443, 26701, 66753, 166883, 52151, 65189, 162973, 407433, 1018583, 1273229, 3183073, 7957683, 310847, 388559, 485699, 151781, 379453, 948633, 2371583, 2964479, 3705599, 4631999, 5789999, 7237499, 4523437, 11308593, 28271483, 17669677, 44174193, 110435483, 69022177, 172555443, 6740447, 8425559, 10531949, 26329873, 65824683, 41140427, 25712767, 32140959, 40176199, 50220249, 125550623, 156938279, 196172849, 490432123, 306520077, …}
The 2280th odd integer > 10^200.
This answer is incorrect! So instead of an answer, here is a case study in how someone can make a mistake when doing integer arithmetic in Python, in spite of the fact that Python has arbitrary size integers. The corrected version of this code should have "n = n//2" in place of "n = int(n/2)" - the reason for this is n/2 returns a floating point number, which ends up being an approximation when n is large.
It runs 2030924 iterations, reaching a maximum number of 45035898533674116, before eventually cycling back to 7. It never reaches 1. Witness: