Every element n in the ring has a spectral twin: N - n. The map n -> N - n flips each CRT residue independently: r_i becomes q_i - r_i. This preserves eigenvalues (cosine is an even function), coupling (gcd is symmetric), and class. It is the additive inverse -- the unique involution that keeps the full CRT spectrum intact.
In each odd channel Z/p^e, the residue -1 = p^e - 1 is the unique non-trivial square root of 1. In Z/8, -1 = 7 is one of four square roots of 1 ({1, 3, 5, 7}). CRT reconstructs the global -1 from these per-channel residues.
In Z/2,310: -1 = 2,309 (prime). In Z/12,612,600: -1 = 12,612,599. The mirror of 1 is a unit with the maximum possible residue in every channel.
Three elements form the foundation: mirror (-1), void (0), sigma (+1). CRT distances form an isosceles triangle:
| p | D*p | c(p) | D*p mod c(p) |
|---|---|---|---|
| 2 | 4 | 5 | -1 (mod 5) |
| 3 | 6 | 7 | -1 (mod 7) |
| 5 | 10 | 11 | -1 (mod 11) |
H+ = {1,...,N/2-1} and H- = {N/2+1,...,N-1} have identical spectra. Total eigenvalue sum = 0.
Enter any n. See n and N-n side by side: CRT decomposition, coupling. The mirror preserves everything structural. Try 137, 42, 1,576,576 (the projector 2^420), 606,376.
Element n:
5^2 = 0 mod 25 means the mod-25 channel cannot see itself. The mirror provides a second view at zero cost. Mod-11 checks within each view. Mod-13 checks between views. Dual parity = 100% detection.
| Aspect | Standard | Axiom |
|---|---|---|
| Reflection | Convenient property | ONLY spectrum-preserving involution |
| Negation | An operation | Free second view. Fixes the mod-25 self-blindness at zero cost. |
| Balance | Some systems | Every twin: same eigenvalue, same coupling, same class. |
| Foundation triangle | {-1, 0, +1} | Isosceles: dist(0,+1) = dist(0,-1) = 5. Universal across 108 rings. |
| Chain | Primes given | Each prime born at mirror position of its predecessor doubled: 2p = -1 mod c(p). |
| ECC | Add redundancy | Free cross-check via dual parity (mod-11 + mod-13). |
Source code · Public domain (CC0)
.ax source compiled to WASM via self-hosting compiler. Zero HTML authored.