structure
definition
def or abbrev
CostFirstExistenceCert
show as:
view Lean formalization →
formal statement (Lean)
91structure CostFirstExistenceCert where
92 rsExists_iff : ∀ {x : ℝ}, 0 < x → (RSExists x ↔ x = 1)
93 non_existence_costly :
94 ∀ {x : ℝ}, 0 < x → x ≠ 1 → 0 < Jcost x
95 nothing_diverges :
96 ¬ ∃ (C : ℝ), ∀ (ε : ℝ), 0 < ε → Jcost ε ≤ C
97
98/-- Cost-first existence certificate. -/