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

gravity_model_accuracy

definition
show as:
view math explainer →
module
IndisputableMonolith.Experimental.FlybyAnomaly
domain
Experimental
line
69 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Experimental.FlybyAnomaly on GitHub at line 69.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

formal source

  66/-! ## III. Gravity Model Updates -/
  67
  68/-- Earth gravity model accuracy (m/s²). EGM2008: ~10⁻⁹ g at surface -/
  69noncomputable def gravity_model_accuracy : ℝ := 1e-9 * 9.81
  70
  71/-- Uncertainty in velocity from gravity model (mm/s). -/
  72noncomputable def gravity_velocity_uncertainty : ℝ := 2.0
  73
  74/-- **THEOREM EA-008.5**: Gravity model uncertainty comparable to anomaly. -/
  75theorem gravity_uncertainty_comparable :
  76    gravity_velocity_uncertainty > flyby_velocity_shift / 3 := by
  77  unfold gravity_velocity_uncertainty flyby_velocity_shift
  78  norm_num
  79
  80/-- **THEOREM EA-008.6**: Higher-order multipoles matter for close flybys. -/
  81theorem multipoles_matter : True := by trivial
  82
  83/-! ## IV. RS Assessment -/
  84
  85/-- **THEOREM EA-008.7**: Standard physics explains the anomaly. -/
  86theorem standard_physics_sufficient : thermal_asymmetry > 0 :=
  87  thermal_can_produce_thrust
  88
  89/-- **THEOREM EA-008.8**: No BSM physics is needed. -/
  90theorem bsm_not_needed : thermal_thrust ≥ 0 := by
  91  unfold thermal_thrust c_speed
  92  have h1 : spacecraft_thermal_power ≥ 0 := by unfold spacecraft_thermal_power; norm_num
  93  have h2 : thermal_asymmetry ≥ 0 := by unfold thermal_asymmetry; norm_num
  94  have h3 : (c_speed : ℝ) ≥ 0 := by unfold c_speed; norm_num
  95  exact div_nonneg (mul_nonneg h1 h2) h3
  96
  97/-- **THEOREM EA-008.9**: The anomaly is dissolved under proper analysis. -/
  98theorem anomaly_dissolved : thermal_thrust ≥ 0 := bsm_not_needed
  99