IndisputableMonolith.Mathematics.RamanujanBridge
IndisputableMonolith/Mathematics/RamanujanBridge.lean · 69 lines · 0 declarations
show as:
view math explainer →
1import Mathlib
2import IndisputableMonolith.Mathematics.RamanujanBridge.PhiLadderStability
3import IndisputableMonolith.Mathematics.RamanujanBridge.DirectedFlux24
4import IndisputableMonolith.Mathematics.RamanujanBridge.RamanujanPiFactors
5import IndisputableMonolith.Mathematics.RamanujanBridge.MockThetaPhantom
6import IndisputableMonolith.Mathematics.RamanujanBridge.ContinuedFractionPhi
7import IndisputableMonolith.Mathematics.RamanujanBridge.ZeckendorfJCost
8import IndisputableMonolith.Mathematics.RamanujanBridge.CongruenceQ3Bridge
9
10/-!
11# Ramanujan Bridge: Recognition Science Decipherment of Ramanujan's Mathematics
12
13This module provides the formal bridge between Srinivasa Ramanujan's deepest
14mathematical structures and Recognition Science (RS).
15
16## Overview
17
18Ramanujan's seemingly miraculous mathematical discoveries find natural
19explanations within the RS framework:
20
211. **Rogers-Ramanujan identities** ↔ **φ-ladder stability** (`PhiLadderStability`)
22 - The "parts differing by ≥ 2" rule = J-cost admissibility on the φ-ladder
23 - Adjacent φ-ladder occupation is unstable (collapses via φ² = φ + 1)
24
252. **The number 24 in Δ(q)** ↔ **Q₃ directed flux** (`DirectedFlux24`)
26 - 24 = 2 × 12 = directed edges of the double-entry ledger on Q₃
27 - The modular discriminant exponent counts ledger flux degrees of freedom
28
293. **Ramanujan's π-series integers** ↔ **RS topological integers** (`RamanujanPiFactors`)
30 - 396 = 2² × 3² × 11, where 11 = passive edges of Q₃
31 - 9801 = (9 × 11)², the squared product containing E_passive
32
334. **Mock theta functions** ↔ **Phantom Light** (`MockThetaPhantom`)
34 - Mock modularity defect = unclosed 8-tick window balance debt
35 - Zwegers' shadow completion ↔ PhantomLight future constraint projection
36
375. **Rogers-Ramanujan continued fractions** ↔ **φ-geodesics** (`ContinuedFractionPhi`)
38 - Infinite nested fractions evaluate to φ because the ground state geodesic
39 on the J-cost choice manifold has cost zero at x = 1, with φ as the unique
40 self-similar fixed point
41
426. **Zeckendorf representation** ↔ **J-cost stability** (`ZeckendorfJCost`)
43 - Non-consecutive Fibonacci decomposition = J-cost-stable representation
44 - Consecutive Fibonacci pairs trigger the golden recurrence collapse
45
46## Mathematical Foundations (from RS)
47
48- **φ forced**: `Foundation.PhiForcing.phi_equation` (φ² = φ + 1)
49- **J-cost unique**: `Cost.Jcost` (J(x) = ½(x + x⁻¹) − 1)
50- **Q₃ geometry**: `Constants.AlphaDerivation` (8 vertices, 12 edges, 6 faces)
51- **8-tick neutrality**: `LNAL.Invariants` (window sum = 0)
52- **Fibonacci → φ**: `Information.LocalCache.fibonacci_partition_forces_phi`
53
54## Claim Hygiene
55
56- THEOREM: Mathematical consequences of RS definitions (machine-checkable)
57- HYPOTHESIS: Empirical/interpretive claims with explicit falsifiers
58- BRIDGE: Structural correspondences between RS and classical number theory
59
60## Lean Module: `IndisputableMonolith.Mathematics.RamanujanBridge`
61-/
62
63namespace IndisputableMonolith.Mathematics.RamanujanBridge
64
65-- The umbrella module re-exports all sub-modules.
66-- See individual files for detailed proofs.
67
68end IndisputableMonolith.Mathematics.RamanujanBridge
69