structure
definition
PowerTransitionCert
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.InternationalRelations.PowerTransitionFromJCost on GitHub at line 76.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
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
94end
95end PowerTransitionFromJCost
96end InternationalRelations
97end IndisputableMonolith