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

warWindow_ordered

proved
show as:
view math explainer →
module
IndisputableMonolith.InternationalRelations.PowerTransitionFromJCost
domain
InternationalRelations
line
63 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.InternationalRelations.PowerTransitionFromJCost on GitHub at line 63.

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

  60
  61theorem warWindowHigh_gt_one : 1 < warWindowHigh := one_lt_phi
  62
  63theorem warWindow_ordered : warWindowLow < warWindowHigh := by
  64  unfold warWindowLow warWindowHigh
  65  -- phi⁻¹ < phi since phi > 1 implies phi * phi > 1 > phi * phi⁻¹ = 1... direct:
  66  have hphi_sq : phi ^ 2 = phi + 1 := phi_sq_eq
  67  rw [inv_eq_one_div]
  68  rw [div_lt_iff₀ phi_pos]
  69  nlinarith [phi_gt_onePointFive]
  70
  71/-- At the φ-boundary, J-cost equals the canonical recognition quantum. -/
  72theorem capabilityCost_at_phi_boundary :
  73    capabilityCost phi 1 = phi - 3 / 2 := by
  74  unfold capabilityCost; simp; exact Jcost_phi_val
  75
  76structure PowerTransitionCert where
  77  cost_at_parity : ∀ c : ℝ, c ≠ 0 → capabilityCost c c = 0
  78  cost_nonneg : ∀ r i : ℝ, 0 < r → 0 < i → 0 ≤ capabilityCost r i
  79  war_window_low_pos : 0 < warWindowLow
  80  war_window_high_gt_one : 1 < warWindowHigh
  81  war_window_ordered : warWindowLow < warWindowHigh
  82  boundary_cost : capabilityCost phi 1 = phi - 3 / 2
  83
  84noncomputable def cert : PowerTransitionCert where
  85  cost_at_parity := capabilityCost_at_parity
  86  cost_nonneg := capabilityCost_nonneg
  87  war_window_low_pos := warWindowLow_pos
  88  war_window_high_gt_one := warWindowHigh_gt_one
  89  war_window_ordered := warWindow_ordered
  90  boundary_cost := capabilityCost_at_phi_boundary
  91
  92theorem cert_inhabited : Nonempty PowerTransitionCert := ⟨cert⟩
  93