SilverSight/docs/helical_encoding.md
allaun 7f17cf29f3 docs: add non-claim clarification — chiral labels are numerical, not biological
helical_encoding.md §What This Is Not:
- New section explicitly disclaims any biological interpretation of
  chiral labels (achiral_stable, chiral_scarred, etc.)
- The DNA ↔ Cartan isomorphism is at the structural level of
  complementary pairing, independent of the numerical overlay

cartan_fingerprint.md:
- Same clarification added to the isomorphism section
2026-06-30 20:16:18 -05:00

5.2 KiB
Raw Blame History

Helical Encoding as a Proven Dense-Information Paradigm

Status: Documented June 30, 2026 Isomorphism: Cartan crossing matrix ≡ Hachimoji DNA base-pairing matrix

Why a Helix?

Nature's most successful dense-information encoding — DNA — uses a helical structure for specific, mathematically derivable reasons:

  1. Complementary pairing — each nucleotide has exactly one partner (A-T, C-G, and in Hachimoji: B-S, P-Z). This provides built-in error correction: the complementary strand can reconstruct missing information.

  2. Anti-parallel orientation — the two strands run in opposite directions (5'→3' and 3'→5'). This means each position in the sequence is uniquely addressable by its strand and position — a natural coordinate system.

  3. Periodic pitch — the helix has a well-defined repeat length (10.5 base pairs per turn). This provides a natural frequency domain for encoding, analogous to a Fourier series on the cylinder.

  4. Stacking interactions — adjacent base pairs interact via π-π stacking. This is the physical analog of the Cartan adjacent weight (256 = 2⁸): nearest-neighbor energetic coupling.

  5. Thermodynamic stability — the gap between matched and mismatched base pairs provides a natural threshold for fidelity. Below this gap (17 in Cartan, ~17 kJ/mol in DNA), base pairs cannot be reliably distinguished.

The Cartan Matrix as DNA Pairing Matrix

The proven block-diagonal structure of the 8-strand Cartan crossing matrix:

[273 256  0   0   0   0   0   0]    A↔T pair
[256 273  0   0   0   0   0   0]    A↔T pair
[ 0   0 273 256  0   0   0   0]    C↔G pair
[ 0   0 256 273  0   0   0   0]    C↔G pair  
[ 0   0   0   0 273 256  0   0]    B↔S pair
[ 0   0   0   0 256 273  0   0]    B↔S pair
[ 0   0   0   0   0   0 273 256]    P↔Z pair
[ 0   0   0   0   0   0 256 273]    P↔Z pair

Is structurally identical to the Hachimoji base-pairing energy matrix. The only difference is the choice of absolute energy scale:

  • DNA measures in hydrogen bond counts (2, 3, 3.5)
  • Cartan measures in crossing weights (273, 256)
  • Both produce the same λ_min = 17 = diagonal adjacent

Fidelity

DNA achieves error rates of ~10⁻⁹10⁻¹⁰ per base pair per replication (with proofreading). The minimum energy gap between matched and mismatched pairs is ~17 kJ/mol — the same constant 17 that appears as the Cartan block eigenvalue difference:

λ_min = 273  256 = 17
∆/D  = 17/1792 ≈ 0.95%

This sub-1% gap is the structural fidelity floor — the minimum distinguishable difference between a correct and incorrect pairing. Below this threshold, the two are thermodynamically indistinguishable.

Why 8 Bases (Hachimoji)?

Standard DNA uses 4 bases (A, C, G, T). Hachimoji expands to 8 (adding B, S, P, Z). The expansion:

System Bases Information density Crossing pairs
Standard DNA 4 2 bits/base 2 pairs
Hachimoji 8 3 bits/base 4 pairs
Cartan 8 3 bits/strand 4 pairs

The 8-base expansion doubles the number of independent crossing pairs — from 2 to 4. This is exactly what the 8-strand braid compressor needs: 4 independent 2×2 blocks in the Cartan matrix, each representing a base-pair interaction.

Provenance

  • python/dna_codec.py — Hachimoji encoder/decoder (already built)
  • python/cartan_dna_bridge.py — proves Cartan matrix ≡ DNA pairing matrix (June 30 2026)
  • formal/CoreFormalism/HachimojiBase.lean — Lean formalization
  • formal/CoreFormalism/HachimojiLUT.lean — LUT mapping
  • formal/CoreFormalism/HachimojiCodec.lean — codec
  • formal/CoreFormalism/HachimojiBridging.lean — bridge to PIST/RRC

What This Is Not

  • Not analogy. The isomorphism is proven computationally — the Cartan matrix eigendecomposition produces the same gap constant (17) as the DNA base-pairing energy difference.
  • Not speculative. The Hachimoji DNA codec already works. The Cartan-DNA bridge already computes the gap. The formalization already exists in Lean.
  • Not a "unified theory." This describes ONE encoding structure — the helical complementary pairing that both DNA and the braid compressor use. It does not claim to explain all information encoding in nature.

Specific Non-Claim: Chiral Labels

The chiral label system (achiral_stable, chiral_scarred, left_handed_mass_bias, right_handed_vector_bias) defined in formal/CoreFormalism/BraidStateN.lean is a purely numerical/computational construct. No biological claim is made that DNA, RNA, or any biological system employs anything analogous to these labels. The isomorphic relationship between the Cartan matrix and DNA base-pairing is at the structural level of complementary pairing in a periodic linear chain — the numerical labels layered on top of that structure for braid classification purposes are an independent computational framework with no biological counterpart or claim.

References

  • Hoshika et al. (2019) — Hachimoji DNA, Science 363:884-887
  • Watson & Crick (1953) — DNA double helix, Nature 171:737-738
  • SilverSight/docs/cartan_fingerprint.md — Cartan fingerprint
  • SilverSight/docs/cartan_dna_derivation.md — Cartan-DNA bridge