Graphing depth

There’s something magical about a procedure that just works. Even if you don’t understand why it works, having a set of steps that will always get you to the same destination feels nice. In life there are few patterns that consistently produce the same outcome. But in math? Hoo boy…

This post takes us through two very simple procedures that converge to a numerical endpoint. We’re going to graph the amount of time it takes to reach this endpoint, which actually ends up being quite pretty.

Careful; such routines can be somewhat of a rabbit hole. As xkcd’s Randall Munroe puts it,

The Collatz Conjecture states that if you pick a number, and if it’s even divide it by two and if it’s odd multiply it by three and add one, and if you repeat this procedure long enough, eventually your friends will stop calling to see if you want to hang out.

6174,

or Kaprekar’s Constant, is the endpoint of one such procedure. If we run any1 four-digit number through the following steps:

  1. arrange the digits in descending and then in ascending order to get two four-digit numbers, adding leading zeros if necessary
  2. subtract the smaller number from the bigger number
  3. repeat

We’ll reach 6174 in at most 7 iterations.

Let’s go through a quick example using 19892, which breaks into 9981 and 1899:

  1. 9981 - 1899 = 8082
  2. 8820 - 0288 = 8532
  3. 8532 - 2358 = 6174 (yay!)

Let’s call the number of iterations it takes an input to reach 6174 its depth.3 Here’s a quick program to return the Kaprekar depth of a 4-digit number:

function kaprekar(num) {
function step(cur, depth) {
// return the depth if our current number is 6174 (or 0 for repdigits)
if (cur === 6174 || !cur) return depth;
// otherwise, split the current number into an array
// of digits and sort it in ascending order
var lo = String(cur).split('').sort();
// make a new array of the numbers in descending order
var hi = lo.slice().reverse();
// turn the arrays back into integers
lo = +lo.join('');
hi = +hi.join('');
// recursively call the function on the difference, adding 1 to depth
return step(hi - lo, depth + 1);
}
// initialize the first step with a depth of 0
return step(num, 0);
}

Running kaprekar(1989) returns 3. Success!

More digits

If we’re dealing with one digit we can set the fixed point at 0. Cool. What about two digits?

  • 63 - 36 = 27
  • 72 - 27 = 45
  • 54 - 45 = 09
  • 90 - 09 = 81
  • 81 - 18 = 63
  • 63 - 36 = uh oh…

It looks like we’ve found our way into a loop. Going off our original definition, the Kaprekar depth at 63 would be infinity.

Since Kaprekar’s routine is deterministic, as soon as we run into a number we’ve already seen we’re stuck in the same loop of numbers. We don’t get any new information at this point, so let’s redefine depth to mean the amount of steps it takes until a number we’ve seen before reemerges. This still works for fixed-point convergence, since 6174 “reemerges” on the next step.

Using this new definition, the depth of 63 is 5. Let’s update our code:

function kaprekar(num) {
function step(cur, prev, depth) {
// return the depth - 1 if we’ve come across this number before
if (prev[cur]) return depth - 1;
// otherwise, log that we’ve now seen the current number
else prev[cur] = true;
// find the ascending and descending parts as we did before
// …
// and take it one level deeper
return step(hi - lo, prev, depth + 1);
}
// initialization for the first step
return step(num, {}, 0);
}

Great! This function should work with fixed point and fixed series (loop) stopping conditions. Running kaprekar(63) now returns 5; before, it would’ve tried to crash your browser.

The fun part

Now that we have a function to determine the Kaprekar depth4 of an arbitrary number; let’s visualize it! We’ll first need to write a drawing function that starts at 0 and moves left-to-right, top-to-bottom until it reaches the bottom-right corner. The code looks like this:

function draw(rows, cols, fn) {
for (var y = 0; y < rows; y++) {
for (var x = 0; x < cols; x++) {
drawPixel(fn(x + y * cols), x, y);
}
}
}

Calling this function with the arguments,

draw(kaprekar, 1000, 1000);

results in a plot of total cycle depth for the Kaprekar Routine for the range [0, 1M). Each pixel represents an integer, with 0 in the top left corner and 999999 in the bottom right. Dark pixels represent a high depth at that number; the max depth for this range is shockingly low at 19.

Total cycle depth for the Kaprekar Routine in the range [0, 1M)
Kaprekar Routine Depths: [0, 1M). View code

The View code link above uses the same code as our example with a bit of color logic tacked on, and a drawing loop that only computes 1% at a time to make sure your browser doesn’t freeze.

Since numbers with fewer digits reach their stopping condition sooner, a light band is observable at the top of the image. Since any two numbers composed of the same digits run through the same steps, a few axes of symmetry can be observed.

Enter Ulam

Mathmetician Stanislaw Ulam made an interesting discovery while doodling during the presentation of a “long and very boring paper”. He started by writing the natural numbers in a rectangular spiral with 1 in the center:

Ulam Spiral
Ulam Spiral: [1, 50)

In our Kaprekar graph we decided that the drawing function should move from top-left to bottom-right. Let’s see if we can make a drawing function that starts in the center and moves outwards in an Ulam spiral5:

function drawUlam(maxVal, fn) {
var directions = [
{x: 1, y: 0}, // 0: right
{x: 0, y: -1}, // 1: up
{x: -1, y: 0}, // 2: left
{x: 0, y: 1}, // 3: down
];
var center = Math.ceil(Math.sqrt(maxVal) / 2); // center point of the grid
var run = 1; // current spiral arm length
var redirect = 3; // next number that the spiral changes direction at
var direction = 0; // current direction
var position = {
x: center - 1, // offset x by -1; we move right before drawing
y: center,
};
for (var i = 1; i < maxVal; i++) {
if (i === redirect) {
direction = (direction + 1) % 4;
// run increases when switching left or right
if (direction % 2 === 0) run++;
redirect += run;
}
position.x += directions[direction].x;
position.y += directions[direction].y;
drawPixel(fn(i), position.x, position.y);
}
}

By replacing the drawing function in our Kaprekar depth example with drawUlam() we get the following graph for the range [0, 998k):

Total cycle depth for the Kaprekar Routine in the range [0, 998k) drawn in an Ulam Spiral
Ulam Spiral of Kaprekar Routine depths: [0, 998k). View code

The light band has been transformed into a series of darkening squares, with clear distinctions at each digit boundary.

The Collatz Conjecture

Let it hail

The second procedure that we’re looking at is called the Collatz Conjecture6. It’s widely recognized and as-yet unproven, which is also true of Kaprekar’s Routine. We start with any integer, then:

  1. if the number is odd, divide it by two
  2. if the number is even, multiply it by three and add one
  3. repeat

The Collatz Conjecture states that no matter what number we start with, it will always eventually reach 1. This has been verified for numbers up to at least 5.764×1018 at the time of writing.

To graph this, we can define depth to mean the number of iterations until 1 is reached. Here’s a quick first pass at a collatz() function:

// naive implementation
function collatz(num) {
var depth = 0;
while (num !== 1) {
num =
num % 2
? num * 3 + 1 // num is odd
: num / 2; // num is even
depth++;
}
return depth;
}

The above function works, but it’s not very efficient; running the numbers from 1 to 1M using this function would waste a lot of time on repeated cycles. Let’s imagine running the number 5 through our procedure:

  1.   5  ↦ ×3+1
  2.   16 ↦ ÷2
  3.   8  ↦ ÷2
  4.   4  ↦ ÷2
  5.   2  ↦ ÷2
  6.   1

Soon after, we would have to calculate the depth of 10:

  1.   10 ↦ ÷2
  2.   5  ↦ ×3+1 // repeated
  3.   16 ↦ ÷2   // repeated
  4.   8  ↦ ÷2   // repeated
  5.   …

Like Kaprekar’s Routine, this procedure is deterministic. That means that whenever we see the number 5, we’ve got 5 more steps until we see the number 1. By memoizing the collatz() function, we avoid running these repetitive cycles.

// slightly better memoized implementation
var collatz = (function () {
var memo = {
1: 0,
};
return function (cur) {
var l,
_len,
memoized,
past = [];
while (typeof memo[cur] === 'undefined') {
past.push(cur);
cur = cur % 2 ? cur * 3 + 1 : cur / 2;
}
memoized = memo[cur];
// throw past values into memo
for (l = _len = past.length; l--; )
memo[past[l]] = _len - l + memoized;
return past.length + memoized;
};
})();

Replacing the kaprekar() function in our first example with collatz() yields the following graph:

Total cycle depth for the Collatz Conjecture in the range (0, 1M]
Collatz Conjecture depths: (0, 1M]. View code

The banding that’s observed is interesting; it looks almost like cloth grain. This tells us that sequential numbers are more likely to have similar depths.

Using the ulam() drawing function, we get:

Total cycle depth for the Collatz Conjecture in the range (0, 998k] drawn in an Ulam Spiral
Ulam Spiral of Collatz Conjecture depths: (0, 998k]. View code

Pretty.

Conclusion

We set out to make some nice looking graphs; we now have four of them7. But why stop there? As we’ve seen, a great advantage to keeping the depth function separate from the drawing function is that we can easily swap in new functions8. A great place to find inspiration for new functions is The On-Line Encyclopedia of Integer Sequences.

Have fun!

Footnotes

  1. Except for repdigits like 3333, which reach their fixed point of 0 after one step.

  2. The number. Another summer.

  3. i.e. with input n and depth t we’re looking for t where ƒn(t) = ƒn(t - 1). More generally, ƒn(t) = ƒn(t - L), where L = fixed-loop size. But we’ll get to that part soon.

  4. A neologism, as far as I can tell. “Stopping time” is likely more appropriate.

  5. The Ulam Spiral story doesn’t end with a different drawing function. The presentation that he was sitting in on must have been really boring, because Ulam started circling prime numbers on his spiral:

    Ulam Spiral with prime numbers shown
    Ulam Spiral with prime numbers shown: [1, 50)

    He noticed that the primes tended to line up along certain diagonal lines more than others. This isn’t evident in the small grid above, but we can repurpose our old code to generate a larger grid. If we replace the kaprekar() function with a function that only returns a color if the number is prime, we can visualize Ulam’s diagonal primes:

    Prime numbers in the range [0, 1M) drawn in an Ulam Spiral
    Ulam Spiral with prime numbers shown: [0, 988k). View code
  6. The Collatz Conjecture has many names. You might know it as: the 3n + 1 conjecture, the Ulam conjecture, Kakutani’s problem, the Thwaites conjecture, Hasse’s algorithm, the Syracuse problem, the hailstone sequence, hailstone numbers, or wondrous numbers.

  7. Five if you count the footnotes!

  8. This is known as function composition.