🦚
Collatz Prefixes
  • Collatz Prefixes
  • Theory
    • Introduction
    • Trajectory & Sequence
    • Exponential Canonical Form
    • Inverse Canonical Form
    • Recursive Index-Parity Tree
    • Path-Indexed Prefix Tree
      • Finding Nature
      • Parent & Child
    • Operation Table
      • Navigating
      • Testing an ECF
      • Shrinking Numbers
    • Iterative Method
Powered by GitBook
On this page
  1. Theory
  2. Path-Indexed Prefix Tree

Parent & Child

A possible proof-by-contradiction opportunity

PreviousFinding NatureNextOperation Table

Last updated 2 years ago

CtrlK
  • Right Child
  • Left Child

Recall that there are two cases that disprove the conjecture:

  • A number is looping: there is a number n=Fj(n)n = F^j(n)n=Fj(n) such that n≠1n\ne1n=1 and j>0j > 0j>0.

  • A number is diverging: there is a number n<Fj(n)n < F^j(n)n<Fj(n) for j>0j > 0j>0.

Now, we can argue as follows:

  • The root number in a PIPTree is always a power of two, which is trivially known to converge (i.e. reach 1).

  • If we can prove that whatever behavior a parent node has, the children will have the same; then, we come to conclusion that all numbers must have the same behavior with powers of two, which are known to converge.

Right Child

We know that for a parent with number nnn, the right child has n/2n/2n/2. It is trivial to see that these will have the same behavior, as the right child is just the result of a single iteration of Collatz function F(n)F(n)F(n).

Left Child

This is a tricky case. For a parent with number nnn, the left child has n/2+rn/2+rn/2+r where rrr is the root number. We know from the previous section the terminating numbers:

  • Good parent

gL′=3m+1+3nm+12pr+1−pmg_L' = 3^{m+1} + \frac{3n_m + 1}{2^{p_r + 1 - p_m}}gL′​=3m+1+2pr​+1−pm​3nm​+1​
gR′=nmg_R' = n_mgR′​=nm​
  • Bad parent

bL′=nm+3m2pr+1−pmb_L' = n_m + 3^m2^{p_r+1-p_m}bL′​=nm​+3m2pr​+1−pm​
bR′=3nm+12pr+1−pmb_R' = \frac{3n_m+1}{2^{p_r+1-p_m}}bR′​=2pr​+1−pm​3nm​+1​

Connecting the left child to either the good parent or the right child remains open research!