def
definition
E_nuclear
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 90.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
87def E_chemical : ℝ := phi_rung_energy chemical_rung
88
89/-- Nuclear energy scale = E_coh · φ^45. -/
90def E_nuclear : ℝ := phi_rung_energy nuclear_rung
91
92/-- **THEOREM EN-004.4**: Nuclear energy exceeds chemical energy. -/
93theorem nuclear_exceeds_chemical : E_chemical < E_nuclear := by
94 unfold E_chemical E_nuclear phi_rung_energy chemical_rung nuclear_rung
95 simp only [zpow_zero, mul_one]
96 apply lt_mul_of_one_lt_right E_coh_storage_pos
97 exact one_lt_zpow₀ one_lt_phi (by norm_num)
98
99/-- The nuclear-to-chemical energy ratio is φ^45. -/
100def nuclear_chemical_ratio : ℝ := phi ^ (45 : ℕ)
101
102/-- **THEOREM EN-004.5**: Nuclear/chemical energy ratio > 1 (φ^45 > 1). -/
103theorem nuclear_chemical_ratio_gt_one : 1 < nuclear_chemical_ratio := by
104 unfold nuclear_chemical_ratio
105 exact one_lt_pow₀ one_lt_phi (by norm_num)
106
107/-! ## §III. J-Cost Energy Storage -/
108
109/-- J-cost energy stored in a recognition event with ratio x. -/
110def jcost_energy (x : ℝ) (hx : 0 < x) : ℝ := E_coh_storage * Jcost x
111
112/-- **THEOREM EN-004.7**: J-cost energy is non-negative. -/
113theorem jcost_energy_nonneg (x : ℝ) (hx : 0 < x) : 0 ≤ jcost_energy x hx := by
114 unfold jcost_energy
115 apply mul_nonneg E_coh_storage_pos.le
116 exact Jcost_nonneg hx
117
118/-- **THEOREM EN-004.8**: J-cost energy is zero iff x = 1 (ground state). -/
119theorem jcost_energy_zero_iff_ground (x : ℝ) (hx : 0 < x) :
120 jcost_energy x hx = 0 ↔ x = 1 := by