$3n+3$ conjecture

267 Views Asked by At

While working on the Collatz problem, I came across this answer. I understand everything except for one thing: that for $n$ odd running Collatz2($n$) is exactly like running Collatz($n+1$). I understand that the first iteration of Collatz2 takes us to $3n+3$ which is a multiple of 3. However, I don't see how this relates to the original Collatz($n+1$) sequence. For convenience, I present the definitions of both functions:

Collatz: \begin{align} f(n) &= \begin{cases} (3n + 1) / 2, & \text{for odd $n$,}\\ n / 2, & \text{for even $n$.}\\ \end{cases} \end{align}

Collatz2: \begin{align} f(n) &= \begin{cases} (3n + 3) / 2, & \text{for odd $n$,}\\ n / 2, & \text{for even $n$.}\\ \end{cases} \end{align}

2

There are 2 best solutions below

0
On

The $3n+1$ rule and the $3n+3$ rule are special cases of the $3n+k$ rule, where $k$ can be any odd integer. Applying any of these rules is the same as applying $3n+1$ to fractions with denominator $k$, and omitting the denominators. This isn't too hard to see:

A fraction with odd denominator can be considered "odd" or "even" according to its numerator, so consider applying the usual $3n+1$ rule, starting with $\frac15$. We get:

$$\frac15 \rightarrow \frac85 \rightarrow \frac45 \rightarrow \frac25 \rightarrow \frac15 \rightarrow \cdots$$

Now, just start with $1$, and apply the $3n+5$ rule:

$$1 \rightarrow 8 \rightarrow 4 \rightarrow 2 \rightarrow 1 \rightarrow \cdots$$

As you can see, these are just the numerators of the previous trajectory.

This works because $1=\frac55$, so adding $1$ to the fraction $\frac{n}5$ just gives us $\frac{n+5}5$.


Anyway, if we're using the $3n+3$ rule, then we're just working with the ordinary Collatz rule, for fractions with denominator $3$. As soon as we multiply by $3$ one time, we end up with an integer, and then we're just playing the usual Collatz game. A trajectory under the $3n+3$ rule, after a single odd step, is a just a regular Collatz trajectory on integers, but we're thinking of each integer $n$ as the fraction $\frac{3n}3$, and simply writing down numerators.

The terminal loop $12 \rightarrow 6 \rightarrow 3$ is really just a shorthand for the terminal loop $\frac{12}3 \rightarrow \frac63 \rightarrow \frac33$, which is just $4 \rightarrow 2 \rightarrow 1$.

0
On

$3n+3$ is not equivalent to $3n+1$. In general, the sequences for $3n+k_1$ and $3n+k_2$, where $k_1$ and $k_2$ are odd integers, will have corresponding scaled sequences in the $3n+k_1k_2$ system where $n$ is simply scaled by $k_2$ or $k_1$ respectively. The converse is not true since the $3n+k_1k_2$ system may contain sequences that correspond to neither $3n+k_1$ nor $3n + k_2$. For example, $3n+5$ has a loop that corresponds to the $3n+1$ ($1,4,2$) loop which is ($5,20,10$) but also has other loops that have no correspondence in the $3n+1$ system. None of the elements of these additional loops are a multiple of $5$. All sequences in $3n+1$ have a corresponding scaled sequence in $3n+3$ but not all sequences in $3n+3$ have a corresponding sequence in $3n+1$.