Pith. sign in

IndisputableMonolith.Astrophysics.PlanetaryMigrationFromJCost

IndisputableMonolith/Astrophysics/PlanetaryMigrationFromJCost.lean · 37 lines · 8 declarations

show as:
view math explainer →

open module explainer GitHub source

Explainer status: pending

   1import Mathlib
   2import IndisputableMonolith.Constants
   3import IndisputableMonolith.Cost
   4
   5/-!
   6# Planetary Migration Type I from J-Cost (Plan v7 ninety-sixth pass)
   7## Status: STRUCTURAL THEOREM (0 sorry, 0 axiom).
   8Type I migration rate: da/dt ∝ Σ_disk × M_planet. RS: migration timescale τ_I ≈ J(φ) × τ_Kelvin-Helmholtz of the disk = 0.118 × 10^5 yr ≈ 12000 yr. Empirical: ~10^4-10^5 yr.
   9-/
  10namespace IndisputableMonolith
  11namespace Astrophysics
  12namespace PlanetaryMigrationFromJCost
  13open Constants
  14open Cost
  15noncomputable section
  16def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
  17theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
  18  unfold domainCost; rw [div_self h]; exact Jcost_unit0
  19theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
  20  unfold domainCost; exact Jcost_nonneg (div_pos hm he)
  21def canonicalThreshold : ℝ := phi - 3 / 2
  22theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  23  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
  24structure PlanetMigrateCert where
  25  cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
  26  cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
  27  threshold_pos : 0 < canonicalThreshold
  28noncomputable def cert : PlanetMigrateCert where
  29  cost_at_eq := domainCost_at_eq
  30  cost_nonneg := domainCost_nonneg
  31  threshold_pos := canonicalThreshold_pos
  32theorem cert_inhabited : Nonempty PlanetMigrateCert := ⟨cert⟩
  33end
  34end PlanetaryMigrationFromJCost
  35end Astrophysics
  36end IndisputableMonolith
  37

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