Unstable Loops: Number Patterns in the Rikitake Dynamo


馃寪 When Chaos Mimics the Earth鈥檚 Core

The Rikitake attractor is related to a model about how the Earth might flip its magnetic poles (I have heard it being discussed online that some 1000s of years ago the North and South poles were flipped and it will happen again). Unlike Lorentz or Rossler, it has sudden jumps and reversals鈥攃haos with a lurch.

Looking at the geometry develop through time helps tune into the number sequences behind its strange heartbeat.


馃摌 The Equations


dx/dt = -b路x + y路z  
dy/dt = -b路y + x路(z - a)  
dz/dt = 1 - x路y

We鈥檒l use: 渭 = 0.5, a = 3.


馃攣 Code Simulation

let x = 0, y = 0.1, z = 0;
const a = 5, b = 2;
const dt = 0.005;

function step() {
  const dx = -b * x + z * y;
  const dy = -b * y + (z - a) * x;
  const dz = 1 - x * y;

  x += dx * dt;
  y += dy * dt;
  z += dz * dt;

  return { x, y, z };
}

馃攤 The Number View

We plot the values step-by-step, just like in the previous posts.


馃М X Values


馃М Y Values


馃М Z Values


The Rikitake system doesn鈥檛 just flow鈥攊t snaps, tumbles, and reverses. This makes its number sequences unpredictable and fascinating鈥攑erfect for scheduling chaotic events.