pith. machine review for the scientific record. sign in
def

nuclear_rung

definition
show as:
view math explainer →
module
IndisputableMonolith.Engineering.EnergyStorageDensityStructure
domain
Engineering
line
84 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Engineering.EnergyStorageDensityStructure on GitHub at line 84.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  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
  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