Seven Primes, One Ring

214,414,200 = 8 * 9 * 25 * 49 * 11 * 13 * 17

The Chinese Remainder Theorem decomposes this number into seven independent channels -- one per prime factor. This site explores what that structure contains. Everything is verifiable. Everything is CC0.

Self-hosting compilerREPLCC0 demosProved on silicon (FPGA)GAP-verifiedFunctional ESP32 meshLive deterministic tests

How It Works

The Chinese Remainder Theorem (300 BC) says: a number modulo a product of coprime factors splits uniquely into one residue per factor. One value, seven independent views. Change one channel, the others don't move.

Modular multiplication is bijective -- every input maps to a unique output when the weight is coprime. Wrong weights produce completely wrong results. No graceful degradation. This makes the ring a non-degenerate computation substrate.

Seven Channels

Each prime contributes one independent channel. The product of all seven moduli is 214,414,200.

PrimeModulusRole
2mod 8Even/odd. The only channel with depth 3: four self-inverse elements.
3mod 9Minimum for majority. Three elements decompose any other.
5mod 25Self-blind: 5^2 divides the ring but 5 does not divide 24.
7mod 49Deepest resolution. Controls the spectral gap.
11mod 11Error detection. Parity check: 1+2+3+5 = 11.
13mod 13Chain stopper. Dual parity with 11 catches all single-channel errors.
17mod 17Ring closer. 5 * 7 = 1 mod 17. Enables triple-parity ECC.

8 * 9 * 25 * 49 * 11 * 13 * 17 = 214,414,200.

Seven Rings

The full structure builds in seven steps -- one per prime. Each ring adds a channel or increases resolution.

RingValueWhat changes
Z/66Two channels: mod 2, mod 3. The first split.
Z/3030Add 5. Three channels. Patterns emerge.
Z/210210Add 7. Four data channels.
Z/2,3102,310Add 11. Error detection available.
Z/970,200970,200Fatten: 2->8, 3->9, 5->25, 7->49. Full resolution.
Z/12,612,60012,612,600Add 13. Six channels. 420-step maximum cycle.
Z/214,414,200214,414,200Add 17. Seven channels. Triple-parity ECC (rate 4/7).

Source code · Public domain (CC0)

Report issue

.ax source compiled to WASM via self-hosting compiler. Zero HTML authored.