File size: 15,826 Bytes
beb4a27 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | # Equation-to-Simulation Mapping
## Pressure-Form Kernel → Digital Mycelium Implementation
**Version:** v0.3.4.6-2-4
**Date:** May 11, 2026
---
## Overview
This document traces how each core kernel equation appears in the Digital Mycelium disclosure-to-repair simulator.
**Key Principle:** The simulator does not prove the kernel. It operationalizes one branch of it in a synthetic environment. Field calibration will test whether real communities match these operationalizations.
---
## Core Equations Mapping
### 1. System Alignment Under Pressure
**Kernel Equation:**
```
S_t = A_t B_t - P_t
```
**Simulator Implementation:**
```
systemAlignment = accountabilityGate × mutualReinforcementBase - pressureLoad
```
**Variables:**
- **A_t** → `accountabilityGate`: whether disclosure/repair decisions are being made
- Simulator proxy: disclosure > 0.70 and responseAuthority > 0.40 → accountabilityGate ≈ 1
- Simulator proxy: disclosure < 0.50 or responseAuthority < 0.20 → accountabilityGate ≈ 0.3
- **B_t** → `mutualReinforcementBase`: calculated from H, I, R
- See mapping #2 below
- **P_t** → `pressureLoad`: extraction, coercion, false belonging, repair friction
- Simulator proxy: extraction + coercion + repairFriction + (1 - heardBelieved) × falseRisk
**Evidence Boundary:**
- Internally reproducible: S_t can be calculated from simulator state
- Externally unvalidated: whether real S_t in communities matches this formula
**Simulator Scenarios Where S_t Degrades Visibly:**
| Scenario | A_t | B_t | P_t | S_t | Outcome |
|----------|-----|-----|-----|-----|---------|
| AP (Healthy) | 0.90 | 0.85 | 0.10 | **+0.66** | D=0 (stable) |
| AQ (Voice Without Power) | 0.16 | 0.70 | 0.50 | **-0.19** | D=5 (collapse t=152) |
| AR (Theater) | 0.24 | 0.65 | 0.66 | **-0.31** | D=5 (collapse t=106) |
| Z (Capture) | 0.14 | 0.55 | 0.68 | **-0.52** | D=5 (collapse t=83) |
---
### 2. Mutual Reinforcement Base: HIR Synergy
**Kernel Equation:**
```
B_t = H_t + I_t + R_t + k(H_t I_t + H_t R_t + I_t R_t)
```
**Simulator Implementation:**
```
mutualReinforcementBase = H + I + R + k(H×I + H×R + I×R)
```
**Variables:**
- **H_t (Honesty)** → `disclosure + visibleOutput + signalIntegrity`
- Simulator proxy: how visible is harm? how truth-revealing is communication?
- Healthy scenario (AP): H ≈ 0.90 (disclosure=0.96, signalIntegrity=0.92)
- Capture scenario (Z): H ≈ 0.45 (disclosure=0.46, signalIntegrity=0.22)
- **I_t (Integrity)** → `signalIntegrity + heardBelieved × healingTime`
- Simulator proxy: is the group doing what it says? Do repairs actually heal?
- Healthy scenario (AP): I ≈ 0.90 (heardBelieved=0.94, healingTime=0.88)
- Theater scenario (AR): I ≈ 0.30 (healingTime=0.16 — acknowledged but not fixed)
- **R_t (Respect)** → `responseAuthority + memberAgency + returnChoice`
- Simulator proxy: are people treated as agents? Can they choose to stay/leave?
- Healthy scenario (AT): R ≈ 0.92 (responseAuthority=0.92, localRepair=0.96)
- Bottleneck scenario (AS): R ≈ 0.60 (responseAuthority=0.70 but correctionThroughput=0.32 — slow)
- **k (Synergy Coefficient)** → `0.35` (fixed in simulator)
- Interpretation: pairwise reinforcement multiplier
- Simulator boundary: not calibrated to real communities yet
**Evidence Boundary:**
- The HIR synergy structure emerges from simulator agent dynamics
- Whether real H, I, R values in actual communities match these proxies: field calibration question
**Healthy vs. Collapse: B_t Contrast**
| Scenario | H | I | R | Linear Sum | Synergy | B_t | Outcome |
|----------|---|---|---|---|---|---|---------|
| AP | 0.90 | 0.90 | 0.90 | 2.70 | +0.28 | **2.98** | Healthy |
| AT | 0.88 | 0.92 | 0.92 | 2.72 | +0.29 | **3.01** | Healthy |
| Z | 0.45 | 0.30 | 0.50 | 1.25 | +0.08 | **1.33** | Collapse t=83 |
| AR | 0.50 | 0.30 | 0.60 | 1.40 | +0.08 | **1.48** | Collapse t=106 |
---
### 3. Pressure Aggregation
**Kernel Equation (Simple):**
```
P_t = w_W W_t + w_F F_t
```
**Kernel Equation (With Interaction):**
```
P_t = w_W W_t + w_F F_t + w_WF W_t F_t
```
**Simulator Implementation:**
```
pressureLoad = (w_W × wear) + (w_F × falseResonance) + (w_WF × wear × falseResonance)
```
**Variables:**
- **W_t (Wear)** → `extraction + repairFriction + repairDelay`
- Simulator proxy: how much value leaves vs. returns?
- Healthy scenario: W ≈ 0.10-0.30 (extraction low, friction minimal)
- Collapse scenario (AJ): W ≈ 0.84 (extraction=0.84, repairFriction=high)
- **F_t (False Resonance)** → `K + falseRes + shamePressure + signalCorruption`
- Simulator proxy: how much is the system lying about its state?
- Capture scenario (Z): F ≈ 0.80 (debt=0.86, secrecy=0.86, signalIntegrity=0.22)
- Theater scenario (AR): F ≈ 0.72 (healingTime=0.16 creates false belief in repair)
- **w_W, w_F** (Weights) → `0.54, 0.56` (fixed in simulator)
- Interpretation: wear and false resonance weighted equally
- Simulator boundary: not validated in real communities
- **w_WF** (Interaction Weight) → `0.27` (fixed in simulator)
- Interpretation: multiplicative effect when both high
- Example: extraction + dogma together > either alone
**Pressure Levels in Scenarios**
| Scenario | Wear | False Resonance | Interaction | Total P_t | Outcome |
|----------|------|---|---|---|---------|
| AP (Healthy) | 0.10 | 0.05 | 0.001 | **0.15** | Stable |
| AQ (No Power) | 0.50 | 0.30 | 0.045 | **0.65** | Collapse t=152 |
| Z (Capture) | 0.46 | 0.80 | 0.37 | **1.18** | Collapse t=83 |
---
### 4. Embodied Alignment: Internalized Capacity
**Kernel Equation:**
```
U_t = A_t B_t (1 + g_G G_t) Fint_t
```
**Simulator Implementation:**
```
embodiedAlignment = accountabilityGate × mutualReinforcementBase × (1 + gritAmplification × earnedGrit) × internalization
```
**Variables:**
- **G_t (Earned Grit)** → `agent.G` in simulator
- Simulator proxy: agents that have survived pressure while maintaining coherence gain grit
- Healthy scenario: G ≈ 0.15-0.25 (people have lived through repair cycles)
- Newly captured scenario: G ≈ 0.05 (no history of successful resistance)
- **Fint_t (Internalization)** → `beliefFree + homeFrequency + marketImmunity`
- Simulator proxy: how deeply is the repair structure embodied vs. externally imposed?
- Healthy scenario (AX): Fint ≈ 0.92 (people choose to stay and propagate)
- Theater scenario (AR): Fint ≈ 0.36 (people don't believe in the repair)
- **g_G (Grit Amplification)** → `0.50` (fixed in simulator)
- Interpretation: each unit of grit amplifies base alignment by 50%
**Evidence Boundary:**
- U_t shows how internalization/grit strengthen resistance to pressure collapse
- Whether real grit values in communities match simulator proxies: field calibration
---
### 5. Carrier Propagation: Cultural Uptake
**Kernel Equation:**
```
C_{t+1} = C_t + α E_t Ξ_t U_t (1 - C_t) - δ_C C_t
```
**Simulator Implementation:**
```
carrierFraction[t+1] = carrierFraction[t]
+ α × exposure × structuredExposureField × embodiedAlignment × (1 - carrierFraction[t])
- δ_C × carrierFraction[t]
```
**Variables:**
- **E_t (Exposure)** → `visibleOutput × disclosure`
- Simulator proxy: is the repair framework visible and talked about?
- Healthy scenario (AP): E ≈ 0.90 (disclosure=0.96, visibility high)
- Hidden scenario (AQ): E ≈ 0.80 (visible but not believed)
- **Ξ_t (Structured Exposure Field)** → `signalVelocity × reach × scaling`
- Simulator proxy: how does the repair knowledge spread?
- Digital scenario (AX): Ξ ≈ 0.98 (fast + truthful)
- Offline scenario (A): Ξ ≈ 0.60 (word of mouth only)
- **α (Adoption Efficiency)** → `0.052` (fixed in simulator)
- Interpretation: adoption rate when all conditions favorable
- Simulator boundary: not calibrated to real communities
- **δ_C (Carrier Decay)** → `0.014` (fixed in simulator)
- Interpretation: carriers drop out / forget / burn out at this rate
- Simulator boundary: not calibrated to real communities
**Evidence Boundary:**
- Carrier fraction dynamics show logistic growth pattern
- Whether real communities match this adoption curve: field calibration
---
### 6. Structured Exposure Field: Signal Reach
**Kernel Equation:**
```
Ξ_t = Ξ_base + [σ Ξ_unit Act(t - τ)] Λ_t
```
**Simulator Implementation:**
```
structuredExposureField = baselineReach + (deploymentIntensity × impactPerNode × activationFunction) × scalingFactor
```
**Variables:**
- **Ξ_base** → `0.30` (organic, grassroots exposure)
- Interpretation: without any structure, ~30% of people hear about repair
- Simulator proxy: some people always figure out repair organically
- **σ (Deployment Intensity)** → `0.90` (fixed in simulator)
- Interpretation: how much effort is put into structured exposure
- Simulator boundary: not real-world calibrated
- **Act(t - τ) (Activation Function)** → step function at τ=0 for public RC
- Interpretation: simulator activation is immediate (release day)
- Real deployment: would have ramp-up
- **Λ_t (Scaling Factor)** → grows with carriers and awareness
- Interpretation: successful exposure attracts more resources/attention
**Evidence Boundary:**
- Reach can be modeled mathematically
- Whether real reach in communities matches this model: field calibration
---
### 7. Awareness and Targeting: Dogma Suppression
**Kernel Equation:**
```
Θ_t = sigmoid(Θ_base + θ_C C_t + θ_E E_t - θ_K K_t)
```
**Simulator Implementation:**
```
awareness = sigmoid(baselineAwareness + θ_C × carrierFraction + θ_E × exposure - θ_K × dogma)
```
**Variables:**
- **K_t (Dogma)** → `K + secrecy + coercion + shamePressure`
- Simulator proxy: how much is the repair framework actively suppressed?
- Healthy scenario: K ≈ 0.08 (no suppression)
- Captured scenario (Z): K ≈ 0.68 (heavy ideological lock)
- **Θ_base** → `0.40` (fixed in simulator)
- Interpretation: baseline targeting/awareness without conditions
- Simulator boundary: not calibrated
- **θ_C, θ_E, θ_K** → `+1.05, +0.72, +1.15` (fixed in simulator)
- Interpretation: sensitivity weights
- Simulator boundary: not calibrated
**Evidence Boundary:**
- Dogma suppresses awareness (sigmoid shows threshold behavior)
- Whether real suppression operates this way: field calibration
**Scenario Contrast: Awareness Under Dogma**
| Scenario | Carriers | Exposure | Dogma | Awareness | Result |
|----------|----------|----------|-------|-----------|--------|
| AP | 0.50 | 0.96 | 0.08 | **0.90** | Healthy |
| Z | 0.02 | 0.88 | 0.68 | **0.22** | Collapse |
---
### 8. System Correction: Degradation Reversal
**Kernel Equation:**
```
ΔD_t = -β U_t C_t L_t R_{s,t} E_t Θ_t
```
**Simulator Implementation:**
```
correctionForce = -β × embodiedAlignment × carrierFraction × lifeAlignment × repairCapacity × exposure × awareness
repairConversion = correctionForce (mapped to 0-1 scale)
```
**Variables:**
- **β (Correction Efficiency)** → `0.090` (fixed in simulator)
- Interpretation: how effectively does correction actually reverse degradation?
- Simulator boundary: not calibrated
- **L_t (Life-Alignment)** → `1 - extraction` (proxy in simulator)
- Interpretation: is repair directed toward life or extraction?
- Healthy scenario: L ≈ 0.90 (extraction low)
- Extraction-heavy scenario: L ≈ 0.15 (extraction=0.85)
- **R_{s,t} (Restorative Support Flow)** → `repair + localRepair + correctiveAgency`
- Interpretation: actual repair capacity deployed
- Healthy scenario (AT): R_s ≈ 0.95 (high repair infrastructure)
- Bottleneck scenario (AS): R_s ≈ 0.50 (repair infrastructure weak)
**The 8-Gate Operationalization of ΔD_t:**
The 8 repair gates break down the correction force:
```
repairConversion = disclosure
× heardBelieved (Θ_t component)
× routingAccess (L_t component)
× stabilization (R_{s,t} component)
× responseAuthority (U_t component)
× correctionThroughput (C_t rate)
× healingTime (U_t internalization)
× followUp (β sustainability)
× societySupport (environmental factor)
× (1 - repairFriction)
```
**Evidence Boundary:**
- The 8 gates are a practical decomposition
- Whether real communities match this decomposition: field calibration
**Healthy vs. Collapsed: Repair Conversion Contrast**
| Scenario | RC Score | Health | Collapse Time |
|----------|----------|--------|---|
| AP | **0.469** | Healthy | Never |
| AT | **0.513** | Healthy | Never |
| Z | **0.002** | Collapsed | t=83 |
| AR | **0.000** | Collapsed | t=106 |
| AQ | **0.001** | Collapsed | t=152 |
**Threshold: repairConversion > 0.23 = health; < 0.10 = collapse**
---
### 9. Full Degradation Trajectory
**Kernel Equation:**
```
D_{t+1} = D_t + GROWTH_t + ΔD_t
```
**Simulator Implementation:**
```
degradation[t+1] = degradation[t] + growthFromPressure[t] - correctionForce[t]
Where:
growthFromPressure = α_wear × wear + α_false × falseResonance + α_friction × repairFriction
correctionForce = repairConversion × β_correction
```
**Evidence Boundary:**
| Scenario | Initial D | Final D | Δ | Mechanism |
|----------|-----------|---------|---|-----------|
| AP | 0.02 | 0.00 | -0.02 | Correction > Growth |
| Z | 0.02 | 5.00 | +4.98 | Growth >> Correction |
| AR | 0.02 | 5.00 | +4.98 | Theater masks degradation |
**Irreversibility Threshold:**
Degradation becomes irreversible when:
```
if D_t ≥ 4.5 in simulator (defined as collapse)
→ system enters irreversible regime
→ no recovery without external intervention
```
**Field Calibration Question:** Does real D_t in communities follow this curve?
---
## Summary: Kernel to Implementation Mapping
| Kernel Equation | Simulator Implementation | Domain Meaning | Threshold | Validated? |
|---|---|---|---|---|
| S_t = A_t B_t - P_t | System alignment | Can group maintain coherence? | S_t > 0 | Internally ✓ / Externally ⏳ |
| B_t = H+I+R+synergy | HIR base | Mutual reinforcement | B_t > 2.0 | Internally ✓ / Externally ⏳ |
| P_t = wW × W + wF × F | Pressure load | How much strain? | P_t < 0.5 | Internally ✓ / Externally ⏳ |
| U_t = A × B × (1+g×G) × Fint | Embodied alignment | Internalized capacity | U_t > 0.5 | Internally ✓ / Externally ⏳ |
| C_t (logistic) | Carrier fraction | Cultural uptake | C_t > 0.3 | Internally ✓ / Externally ⏳ |
| Ξ_t (reach) | Exposure field | Signal propagation | Ξ_t > 0.6 | Internally ✓ / Externally ⏳ |
| Θ_t (sigmoid) | Awareness | Dogma suppression effect | Θ_t > 0.6 | Internally ✓ / Externally ⏳ |
| ΔD_t (correction) | Repair conversion | How well does system repair? | RC > 0.23 | Internally ✓ / Externally ⏳ |
| D_t (trajectory) | Collapse vs. Stable | Does system collapse or persist? | D_t < 1.0 (healthy) | Internally ✓ / Externally ⏳ |
---
## Boundary: What Is Proven and What Is Field-Calibration-Ready
**Internally Reproducible (Proven in Simulation):**
✓ The equations describe pressure-alignment dynamics consistently
✓ Four identical validation runs confirm reproducibility
✓ The 8-gate pathway operationalizes the correction force
✓ The repairConversion threshold separates health from collapse
**Externally Unvalidated (Field Calibration Phase):**
⏳ Whether real communities match synthetic parameters
⏳ Whether real collapse rates match simulated collapse times
⏳ Whether the 8-gate decomposition matches real repair pathways
⏳ Whether repairConversion > 0.23 holds in reality
---
*Equation-to-Simulation Mapping*
*v0.3.4.6-2-4*
*May 11, 2026*
|