Pith. sign in

IndisputableMonolith.Physics.BlackHoleMassGapFromPhi

IndisputableMonolith/Physics/BlackHoleMassGapFromPhi.lean · 47 lines · 8 declarations

show as:
view math explainer →

open module explainer GitHub source

Explainer status: ready · generated 2026-08-17 06:56:34.214826+00:00

   1import Mathlib
   2import IndisputableMonolith.Constants
   3import IndisputableMonolith.Cost
   4
   5/-!
   6# Black Hole Mass Function from φ-Ladder (Plan v7 eighty-eighth pass)
   7
   8## Status: STRUCTURAL THEOREM (0 sorry, 0 axiom).
   9
  10BH masses: stellar BHs 3-100 M_⊙, IMBH 100-10^5 M_⊙, SMBH 10^6-10^10 M_⊙. RS: 100/3 ≈ 33 ≈ φ^7.6 (rung 8 transition). 10^5/100 = 1000 ≈ φ^14.4 (rung 14 gap). 10^10/10^6 = 10^4 ≈ φ^19.2.
  11-/
  12
  13namespace IndisputableMonolith
  14namespace Physics
  15namespace BlackHoleMassGapFromPhi
  16
  17open Constants
  18open Cost
  19
  20noncomputable section
  21
  22def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
  23theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
  24  unfold domainCost; rw [div_self h]; exact Jcost_unit0
  25theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
  26  unfold domainCost; exact Jcost_nonneg (div_pos hm he)
  27def canonicalThreshold : ℝ := phi - 3 / 2
  28theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  29  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
  30
  31structure BHMassFuncCert where
  32  cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
  33  cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
  34  threshold_pos : 0 < canonicalThreshold
  35
  36noncomputable def cert : BHMassFuncCert where
  37  cost_at_eq := domainCost_at_eq
  38  cost_nonneg := domainCost_nonneg
  39  threshold_pos := canonicalThreshold_pos
  40
  41theorem cert_inhabited : Nonempty BHMassFuncCert := ⟨cert⟩
  42
  43end
  44end BlackHoleMassGapFromPhi
  45end Physics
  46end IndisputableMonolith
  47

source mirrored from github.com/jonwashburn/shape-of-logic