theorem
proved
E_coh_storage_pos
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Engineering.EnergyStorageDensityStructure on GitHub at line 58.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
55def E_coh_storage : ℝ := phi ^ (-5 : ℤ)
56
57/-- **THEOREM EN-004.1**: E_coh is positive. -/
58theorem E_coh_storage_pos : 0 < E_coh_storage := by
59 unfold E_coh_storage
60 exact zpow_pos phi_pos _
61
62/-- Energy stored per recognition event on rung n of the φ-ladder. -/
63def phi_rung_energy (n : ℤ) : ℝ := E_coh_storage * phi ^ n
64
65/-- **THEOREM EN-004.2**: Energy at each φ-rung is positive. -/
66theorem phi_rung_energy_pos (n : ℤ) : 0 < phi_rung_energy n := by
67 unfold phi_rung_energy
68 exact mul_pos E_coh_storage_pos (zpow_pos phi_pos _)
69
70/-- **THEOREM EN-004.3**: Consecutive φ-rung energies differ by exactly φ. -/
71theorem phi_rung_energy_ratio (n : ℤ) :
72 phi_rung_energy (n + 1) / phi_rung_energy n = phi := by
73 unfold phi_rung_energy
74 rw [zpow_add_one₀ phi_ne_zero]
75 have hpow_pos : 0 < phi ^ n := zpow_pos phi_pos n
76 field_simp [phi_pos.ne', E_coh_storage_pos.ne', hpow_pos.ne']
77
78/-! ## §II. Energy Hierarchy -/
79
80/-- Chemical bonding rung index (n = 0, one coherence quantum). -/
81def chemical_rung : ℤ := 0
82
83/-- Nuclear binding rung index (n = 45, matches nuclear/chemical ratio ≈ 10⁹). -/
84def nuclear_rung : ℤ := 45
85
86/-- Chemical energy scale = E_coh · φ^0 = E_coh. -/
87def E_chemical : ℝ := phi_rung_energy chemical_rung
88