Submitted:
12 January 2026
Posted:
13 January 2026
You are already at the latest version
Abstract
Keywords:
1. Introduction
2. Materials and Methods
2.1. Informational Framework
- Informational Curvature (ΔC)
- 2.
- Admissibility (Φα)
- 3.
- Informational Dissipation
2.2. Collatz Mapping as an Informational Process
2.3. Informational Curvature Evolution and the General Cliff Engine (GCE)
2.4. Computational Methodology and Validation
- instantaneous informational curvature ΔC,
- cumulative admissibility Φα,
- dissipation measures derived from contraction sequences.
2.5. Statistical Treatment
2.6. Reproducibility
3. Results
3.1. Global Convergence and Dataset Overview
3.2. Distribution of Collatz Sequence Lengths

| Parameter | Value |
|---|---|
| Mean Length | 114.3 |
| Median Length | 107 |
| Standard Deviation | 32.7 |
| Maximum | 349 |
| Best Fit | Gamma (Shape = 2.1, scale = 52) |
3.3. Informational Curvature Spectrum
- a negative peak near , corresponding to division-by-two (even) steps,
- a positive peak near , corresponding to (odd) steps.

3.4. Informational Compression Ratio and Stability
3.5. Phase Space Structure and Dissipative Regime
3.6. Comparative Stability Across Models
3.7. Phase-Space Structure and Distance from Criticality
4. Discussion
5. Conclusions and Outlook
5.1. What Collatz Teaches Us About Integers
5.2. Why Informational Geometry Matters
5.3. Connections to Goldbach, Primes, and the General Cliff Engine
5.4. Outlook
Funding
Data Availability Statement
Acknowledgments
Conflicts of Interest
Appendix A. Formal Informational Geometry of Collatz Dynamics
Appendix A.1. Purpose and Scope
- operationally definable,
- computable along explicit trajectories,
- robust under admissible variations,
- sufficient to explain global stability via structural asymmetry.
Appendix A.2. Admissible Coherence Functionals ΔC
- 1. Monotone growth
- 2. Compression sensitivity
- 3. Parity regularity
Appendix A.3. Stepwise and Macro-Step Coherence Increments
- odd steps → (expansion),
- even steps → (compression).
Appendix A.4. Informational Curvature Parameter Φα
- : subcritical (collapse-dominated),
- : critical,
- : divergence possible.
Appendix A.5. Lemma A1 — Macro-Step Coherence Asymmetry (Formal Statement)
Appendix A.6. Structural Consequence (Why Divergence Is Suppressed)
- persistent expansion dominance,
- ,
- absence of deep cliffs.
- deep cliffs are arithmetically inevitable,
- grows with height,
- compression scales faster than expansion.
| k | parity | ||||||
|---|---|---|---|---|---|---|---|
| 0 | 7 | odd | 0 | 2.1459 | 22 | 3.5910 | +1.4451 |
| 1 | 22 | even | 1 | 3.5910 | 11 | 2.5979 | −0.9931 |
| 2 | 11 | odd | 0 | 2.5979 | 34 | 4.0264 | +1.4285 |
| 3 | 34 | even | 1 | 4.0264 | 17 | 3.0332 | −0.9931 |
| 4 | 17 | odd | 0 | 3.0332 | 52 | 4.9512 | +1.9180 |
| 5 | 52 | even | 2 | 4.9512 | 26 | 3.7581 | −1.1931 |
| 6 | 26 | even | 1 | 3.7581 | 13 | 2.7649 | −0.9931 |
| 7 | 13 | odd | 0 | 2.7649 | 40 | 5.1889 | +2.4239 |
| 8 | 40 | even | 3 | 5.1889 | 20 | 3.9957 | −1.1931 |
| 9 | 20 | even | 2 | 3.9957 | 10 | 2.8026 | −1.1931 |
| 10 | 10 | even | 1 | 2.8026 | 5 | 1.8094 | −0.9931 |
| 11 | 5 | odd | 0 | 1.8094 | 16 | 4.7726 | +2.9632 |
| Macro m | |||||||
|---|---|---|---|---|---|---|---|
| 0 | 7 | 22 | 1 | 11 | 2.1459 | 2.5979 | +0.4520 |
| 1 | 11 | 34 | 1 | 17 | 2.5979 | 3.0332 | +0.4353 |
| 2 | 17 | 52 | 2 | 13 | 3.0332 | 2.7649 | −0.2683 |
| 3 | 13 | 40 | 3 | 5 | 2.7649 | 1.8094 | −0.9555 |
| 4 | 5 | 16 | 4 | 1 | 1.8094 | 0.2000 | −1.6094 |
- is always even, so every ramp necessarily triggers a compression cascade.
- The integer measures the cliff depth (how many halving occur before the next odd).
- Larger values correspond to stronger compressive events and tend to produce more negative
| Macro m | |||||||
|---|---|---|---|---|---|---|---|
| 0 | 27 | 82 | 1 | 41 | 3.4957 | 3.9130 | +0.4173 |
| 1 | 41 | 124 | 2 | 31 | 3.9130 | 3.6340 | −0.2790 |
| 2 | 31 | 94 | 1 | 47 | 3.6340 | 4.0502 | +0.4162 |
| 3 | 47 | 142 | 1 | 71 | 4.0502 | 4.4621 | +0.4119 |
| 4 | 71 | 214 | 1 | 107 | 4.4621 | 4.8725 | +0.4104 |
| 5 | 107 | 322 | 1 | 161 | 4.8725 | 5.2758 | +0.4033 |
| Start odd | Next odd | |||||
| 85 | 256 | 8 | 1 | 4.6420 | 0.2000 | −4.4420 |
Appendix B. Computational Implementation and Proof-of-Concept Code
Appendix B.1. Purpose
- operational computation of ΔC,
- stepwise and macro-step increments,
- estimation of Φα,
- empirical verification of the subcritical regime.
Appendix B.2. Python Reference Implementation
| import math def v2(n): k = 0 while n % 2 == 0: n //= 2 k += 1 return k def delta_C(n, w1=1.0, w2=0.5, w3=0.2): return w1*math.log(n) + w2*v2(n) + (w3 if n % 2 else 0.0) def collatz_step(n): return 3*n + 1 if n % 2 else n // 2 def trajectory(n0, steps=1000): n = n0 traj = [n] for _ in range(steps): n = collatz_step(n) traj.append(n) return traj def coherence_increments(traj): return [ delta_C(traj[i+1]) - delta_C(traj[i]) for i in range(len(traj)-1) ] def phi_alpha(increments): pos = [d for d in increments if d > 0] neg = [-d for d in increments if d < 0] return sum(pos)/len(pos) / (sum(neg)/len(neg)) # Example traj = trajectory(27, 2000) incs = coherence_increments(traj) print("Phi_alpha:", phi_alpha(incs)) Note: weights chosen for illustration; structural results are weight-robust |
Appendix B.3. Expected Output and Interpretation
- Φα remains consistently below unity,
- occasional large negative increments dominate cumulative balance,
- results are robust under moderate changes in ΔC weights.
References
- Lagarias, J. C. The 3x + 1 Problem and Its Generalizations. American Mathematical. Monthly 92 (1985), 3–23. [CrossRef]
- Lagarias, J. C. The Ultimate Challenge: The 3x + 1 Problem. American Mathematical Society, Providence, RI, 2010.
- Wirsching, G. J. The Dynamical System Generated by the 3n + 1 Function. Lecture Notes in Mathematics, Vol. 1681, Springer, 1998. [CrossRef]
- Terras, R. A Stopping Time Problem on the Positive Integers. Acta Arithmetica 30 (1976), 241–252.
- Oliveira e Silva, T. Maximum Excursion and Stopping Time Record-Holders for the 3x + 1 Problem: Computational Results. Mathematics of Computation 68 (1999), 371–384. [CrossRef]
- Oliveira e Silva, T.; Herzog, S.; Pardi, S. Empirical Verification of the Collatz Conjecture and Related Conjectures. arXiv:2008.02828 (2020).
- Roosendaal, E. On the 3n + 1 Problem. Online computational reports and datasets, ongoing.
- Korec, I. A Density Estimate for the 3x + 1 Problem. Mathematical Journal of Okayama University 36 (1994), 1–9.
- Sinai, Y. G. Statistical (3x + 1)-Problem. Communications on Pure and Applied Mathematics 56 (2003), 1016–1028. [CrossRef]
- Vallée, B. Dynamical Analysis of a Generalized Euclidean Algorithm. Theoretical Computer Science 297 (2003), 447–486.
- Crandall, R. On the “3x + 1” Problem. Mathematics of Computation 32 (1978), 1281–1292.
- Krasikov, I.; Lagarias, J. C. Bounds for the 3x + 1 Problem Using Difference Inequalities. Acta Arithmetica 109 (2003), 237–258.
- Tao, T. Almost All Orbits of the Collatz Map Attain Almost Bounded Values. Forum of Mathematics, Pi 8 (2020), e10. [CrossRef]
- Danesh, P. Independent Computational Validation of Collatz Informational Curvature and Viscous Coherence. VTT Research Project Technical Report No. 2026-01; VTT Research Team: Torino, Italy, 2026. Available upon request from the authors.
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2026 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (http://creativecommons.org/licenses/by/4.0/).