|
| 1 | +# Cryptobiosis Theory — Phase-Transition Survival |
| 2 | + |
| 3 | +## Biological basis |
| 4 | + |
| 5 | +Tardigrades survive lethal conditions (vacuum, radiation, -272°C, 150°C) |
| 6 | +not by resisting them but by **exiting the space where the threat applies**: |
| 7 | +vitrifying into a tun state where metabolism drops to zero. |
| 8 | + |
| 9 | +Key properties: |
| 10 | +- **O(1) transition**: vitrification is a phase transition, not a gradual process |
| 11 | +- **Zero metabolism in dormant state**: not "reduced" — zero |
| 12 | +- **Snapshot recovery**: the tun contains all information needed to resume |
| 13 | +- **Staged rehydration**: recovery is cautious, multi-phase, abortable |
| 14 | +- **Hysteresis**: exit threshold < entry threshold (prevents oscillation) |
| 15 | + |
| 16 | +## GeoSync implementation |
| 17 | + |
| 18 | +State machine: ACTIVE → VITRIFYING → DORMANT → REHYDRATING → ACTIVE |
| 19 | + |
| 20 | +Combined neuromodulator distress T ∈ [0, 1]: |
| 21 | + T = 1 - GVS_score (where GVS = Gradient Vital Signs) |
| 22 | + |
| 23 | +When T ≥ entry_threshold (default 0.85): |
| 24 | +- System vitrifies in ONE tick (O(1)) |
| 25 | +- Position multiplier drops to EXACTLY 0.0 |
| 26 | +- Snapshot is captured for recovery |
| 27 | + |
| 28 | +When T < exit_threshold (default 0.60): |
| 29 | +- Rehydration begins (staged ramp-up) |
| 30 | +- If T ≥ entry during rehydration → abort back to DORMANT |
| 31 | + |
| 32 | +## Why this matters for trading |
| 33 | + |
| 34 | +Traditional risk management: "reduce position by X% when vol > Y." |
| 35 | +This RESISTS the threat — still in the space, still losing money slower. |
| 36 | + |
| 37 | +Cryptobiosis: "exit ALL positions when gradient collapses." |
| 38 | +This EXITS the space — zero exposure, zero P&L, wait for recovery. |
| 39 | + |
| 40 | +The key insight: the cost of being in DORMANT during a false alarm |
| 41 | +(missed opportunity) is bounded and recoverable. The cost of being |
| 42 | +ACTIVE during a true crisis (unbounded loss) is not. |
| 43 | + |
| 44 | +DORMANT multiplier = 0.0 EXACTLY is a SAFETY INVARIANT (INV-CB1). |
| 45 | +Not 0.001. Not "close to zero." Zero. Because a discharged gradient |
| 46 | +computing its own disappearance is worse than zero. |
| 47 | + |
| 48 | +## Connection to Gradient Ontology (CLAUDE.md Section 0) |
| 49 | + |
| 50 | +Layer 3 of the maintenance hierarchy: Gradient Preserved. |
| 51 | +When Layers 0-2 fail (gradient gone, Lyapunov diverging, GABA saturated), |
| 52 | +Layer 3 fires: exit the space entirely. |
| 53 | + |
| 54 | +## Invariants |
| 55 | + |
| 56 | +| ID | Statement | Priority | |
| 57 | +|----|-----------|----------| |
| 58 | +| INV-CB1 | DORMANT ⟹ multiplier == 0.0 EXACTLY | P0 | |
| 59 | +| INV-CB2 | Vitrification O(1) — one tick | P0 | |
| 60 | +| INV-CB3 | Snapshot non-None in DORMANT | P1 | |
| 61 | +| INV-CB4 | Rehydration stages non-decreasing | P0 | |
| 62 | +| INV-CB5 | Entry > individual module thresholds | P1 | |
| 63 | +| INV-CB6 | T ∈ [0, 1] | P0 | |
| 64 | +| INV-CB7 | exit < entry (hysteresis) | P0 | |
| 65 | +| INV-CB8 | T ≥ entry during rehydration → DORMANT | P0 | |
0 commit comments