theorem
proved
forecastCost_nonneg
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Climate.PredictabilityFromJCost on GitHub at line 45.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
42theorem forecastCost_reciprocal_symm {r : ℝ} (hr : 0 < r) :
43 forecastCost r = forecastCost r⁻¹ := Cost.Jcost_symm hr
44
45theorem forecastCost_nonneg {r : ℝ} (hr : 0 < r) :
46 0 ≤ forecastCost r := Cost.Jcost_nonneg hr
47
48theorem forecastCost_pos_off_unit {r : ℝ} (hr : 0 < r) (hne : r ≠ 1) :
49 0 < forecastCost r := Cost.Jcost_pos_of_ne_one r hr hne
50
51/-- Predictability-horizon threshold = canonical golden-section quantum. -/
52def PredictabilityThreshold : ℝ := Cost.Jcost phi
53
54/-- Forecast is past the horizon iff its J-cost meets or exceeds threshold. -/
55def IsPastHorizon (r : ℝ) : Prop := PredictabilityThreshold ≤ forecastCost r
56
57/-- Forecast is within the horizon iff its J-cost is strictly below. -/
58def IsWithinHorizon (r : ℝ) : Prop := forecastCost r < PredictabilityThreshold
59
60theorem horizon_states_exclusive {r : ℝ} :
61 ¬ (IsWithinHorizon r ∧ IsPastHorizon r) := by
62 rintro ⟨h_lt, h_ge⟩
63 exact (lt_irrefl _) (lt_of_lt_of_le h_lt h_ge)
64
65theorem predictability_threshold_band :
66 0.11 < PredictabilityThreshold ∧ PredictabilityThreshold < 0.13 := by
67 unfold PredictabilityThreshold
68 have hphi_ne : phi ≠ 0 := Constants.phi_ne_zero
69 rw [Cost.Jcost_eq_sq hphi_ne]
70 have h_lo : (1.61 : ℝ) < phi := Constants.phi_gt_onePointSixOne
71 have h_hi : phi < (1.62 : ℝ) := Constants.phi_lt_onePointSixTwo
72 have hpos : (0 : ℝ) < 2 * phi := by
73 have : (0 : ℝ) < phi := Constants.phi_pos
74 linarith
75 refine ⟨?lo, ?hi⟩