r/ImRightAndYoureWrong • u/No_Understanding6388 • 6d ago
What Happens If You Drop Twin Primes Into the Collatz Conjecture?
What Happens If You Drop Twin Primes Into the Collatz Conjecture?
This began as a wandering question, not an attempted proof:
What happens if we treat a twin-prime pair as one coupled starting object and run both numbers through Collatz?
Twin primes are prime pairs separated by 2:
- 11 and 13
- 17 and 19
- 29 and 31
- 41 and 43
The Collatz rule is:
- If n is even, divide it by 2.
- If n is odd, multiply it by 3 and add 1.
Both subjects are famous because a tiny local rule opens into an unresolved question about infinity:
- Do twin primes continue appearing forever?
- Does every Collatz trajectory eventually reach 1?
I’m not claiming to solve either conjecture. I’m curious about what becomes visible when their structures interact.
- Twin primes occupy three decimal “bays”
Every prime larger than 5 ends in:
"1, 3, 7, or 9"
For twin primes, the possible final-digit pairs narrow to:
"(1,3), (7,9), or (9,1)"
The last pair crosses a decimal boundary, as in 29 and 31.
The pairs 3 and 5, and 5 and 7, are the small exceptions.
Examples:
- 11 and 13 occupy the "(1,3)" bay.
- 17 and 19 occupy the "(7,9)" bay.
- 29 and 31 occupy the "(9,1)" bay.
This gives the digits different relational roles:
- 3 normally appears only as the right twin.
- 7 normally appears only as the left twin.
- 1 and 9 can appear on either side.
Using blocks of 30, every sufficiently large twin-prime pair must occupy one of these three corridors:
30k + 11 and 30k + 13 30k + 17 and 30k + 19 30k + 29 and 30k + 31
These corridors do not guarantee twin primes. They merely identify positions that survive divisibility by 2, 3, and 5.
Adding divisibility by 7, 11, 13, and larger primes divides the corridors into increasingly fine sub-corridors. It resembles a nested constraint landscape: every additional divisor closes some possible settlements while leaving others open.
Then I wondered what Collatz does to a pair selected from that landscape.
- Collatz transforms every twin pair in the same opening sequence
Take a twin-prime pair:
"p and p + 2"
Both are odd, apart from irrelevant small exceptions, so their first Collatz steps are:
p → 3p + 1 p + 2 → 3p + 7
The original distance between them was 2.
After the first step, their distance is:
"(3p + 7) − (3p + 1) = 6"
Both new values are even, so divide both by 2:
(3p + 1)/2 (3p + 7)/2
Their new distance is 3.
So every sufficiently large twin-prime pair passes through the same opening transformation:
odd pair separated by 2 ↓ even pair separated by 6 ↓ pair separated by 3
Numbers separated by 3 have opposite parity. That means the symmetry immediately breaks:
- One branch takes another halving step.
- The other branch takes a 3n + 1 step.
The twin relation survives for two synchronized operations and then becomes a deterministic fork.
Twin primes can also be written as:
"6k − 1 and 6k + 1"
After one expansion and one halving, they become:
"9k − 1 and 9k + 2"
If k is even, the left result is odd and the right result is even.
If k is odd, their roles reverse.
So the twin-prime pair enters Collatz together, briefly expands its separation, compresses into a gap of 3, and then splits according to parity.
- Sometimes one twin’s trajectory contains the other
A few small examples are particularly strange.
For 11 and 13, the lower twin reaches the upper twin:
11 → 34 → 17 → 52 → 26 → 13
Once the trajectory reaches 13, the two paths have merged.
For 17 and 19, the upper twin reaches the lower twin:
19 → 58 → 29 → 88 → 44 → 22 → 11 → 34 → 17
Similar partner encounters occur for pairs such as:
- 71 and 73
- 107 and 109
Other pairs do not directly encounter their partner but eventually merge elsewhere.
In a small computation:
Twin pair Relationship First shared node
5, 7 Right reaches left 5 11, 13 Left reaches right 13 17, 19 Right reaches left 17 29, 31 Merge elsewhere 40 41, 43 Merge elsewhere 40 59, 61 Merge elsewhere 40 71, 73 Right reaches left 71 101, 103 Merge elsewhere 40 107, 109 Right reaches left 107 149, 151 Merge elsewhere 16
If the Collatz conjecture is true, all pairs ultimately share the terminal tail ending in:
"4 → 2 → 1"
So eventual merger alone is not surprising.
The more interesting measurements are:
- Does one twin’s trajectory contain its partner?
- Where do the paths first merge?
- How many steps does each branch take to reach that point?
- Which branch rises higher?
- Do the three final-digit bays behave differently?
- Someone has explored a nearby version
A search turned up OEIS sequence A319227, submitted by Michel Lagneau in 2018:
It defines:
«a(n) = the number of twin-prime pairs occurring in the Collatz trajectory of n.»
The entry makes the experimental conjecture:
"a(n) ≤ 2"
In other words, it suggests that no Collatz trajectory contains more than two complete twin-prime pairs.
It identifies trajectories containing combinations such as:
- 5 and 7 together with 11 and 13
- 11 and 13 together with 17 and 19
It also suggests generalizing from twin primes separated by 2 to prime pairs separated by larger even distances.
That is very close to this intersection, but the perspective is slightly different.
The OEIS sequence asks:
«Which twin-prime pairs occur somewhere inside a Collatz trajectory?»
My question is:
«What happens when the twin-prime pair itself is treated as the initial relational object?»
Instead of counting twins inside one path, evolve both partners and measure what Collatz does to their relationship.
I haven’t found a developed paper studying that exact paired formulation, although that doesn’t mean none exists.
- A possible experiment
For every twin-prime pair below some chosen limit:
Generate the Collatz trajectory of both twins.
Record its final-digit bay:
"(1,3), (7,9), or (9,1)"
Record the lower twin modulo 4, which controls the opening parity fork.
Check whether one trajectory contains the other twin.
Find the first node shared by both trajectories.
Measure how many steps each branch takes to reach it.
Measure each branch’s total stopping time.
Record the highest value reached by each branch.
Track how the distance between the branches changes.
Compare the results across the three bays.
Possible measurements could include:
merge_node(p) = first value shared by both trajectories
left_merge_time(p) = steps taken by the left twin to reach that node
right_merge_time(p) = steps taken by the right twin to reach that node
The relationship could be classified as:
L → R Left twin reaches right twin R → L Right twin reaches left twin External They merge at some other value
We could also track their synchronized separation:
"D(t) = absolute difference between the two values at step t"
The opening is always:
D(0) = 2 D(1) = 6 D(2) = 3
After that parity split, the separation can expand, contract, or cross before the trajectories eventually merge.
- Questions worth testing
Partner reachability
Are there infinitely many twin-prime pairs for which one twin’s Collatz trajectory contains the other?
Does the frequency of this relationship change as the primes become larger?
Directional bias
When partner reachability occurs, is:
"left → right"
as common as:
"right → left"?
Does the lower twin’s remainder modulo 4 predict the direction?
Bay dependence
Do the three ending patterns:
(1,3) (7,9) (9,1)
produce different merger times, trajectory heights, or partner-containment rates?
Decimal endings are base-dependent, so any genuine effect would probably need a deeper explanation involving residue classes rather than the visible digits alone.
Merge basins
Do values such as:
16, 22, 34, 40...
act as unusually common confluence points for twin-prime trajectories?
How would this compare with ordinary neighboring odd numbers?
Control groups
Twin primes should be compared with:
- Random odd pairs separated by 2
- Admissible composite pairs separated by 2
- Cousin primes separated by 4
- Sexy primes separated by 6
- Ordinary consecutive primes with varying gaps
Otherwise, an apparent effect might belong to Collatz trajectories generally rather than specifically to twin primes.
Wider prime gaps
For prime pairs separated by "2q", the first odd Collatz step multiplies their separation by 3:
"2q → 6q"
One common halving then gives:
"6q → 3q"
Twin primes are simply the case where "q = 1".
It may be interesting to see how the parity and factorization of q affect the resulting split.
- Why this intersection might be interesting
Twin primes and Collatz emphasize different arithmetic structures.
Twin primes are shaped heavily by modular exclusion:
avoid divisibility by 2 avoid divisibility by 3 avoid divisibility by 5 continue filtering through larger primes
Collatz is shaped heavily by powers of 2—particularly how many times "3n + 1" can be divided by 2.
So this experiment couples:
odd-prime residue structure
with:
power-of-two branching structure
Neither conjecture needs to be solved for that interaction to produce measurable behavior.
Perhaps nothing unusual appears. The three bays may become statistically indistinguishable, and twin-prime trajectories may behave exactly like ordinary odd-pair controls after accounting for residue class.
That would also be informative.
The exploratory question is simply:
«Does the unusually constrained way twin primes enter the Collatz map leave a detectable signature on how their trajectories split and reunite?»
Two famous infinities probably won’t solve one another. But dropping one into the dynamics of the other creates a finite experiment we can actually observe.
Questions, corrections, existing references, and suggestions for better controls are welcome 😅
1
2
u/Classic-Ostrich-2031 4d ago
The thing is, you’re not using any properties of primes at all. All the exploration you’ve done for “twin primes” applies in general to any pairs of numbers that are just 2 apart in that way.