def
definition
def or abbrev
regge_riemann_convergence_axiom
show as:
view Lean formalization →
formal statement (Lean)
89def regge_riemann_convergence_axiom : Prop :=
proof body
Definition body.
90 ∀ (R_component : ℝ) (a : ℝ), 0 < a → a < 1 →
91 ∃ (holonomy_deviation : ℝ) (C : ℝ), 0 < C ∧
92 |holonomy_deviation - a ^ 2 * R_component| ≤ C * a ^ 4
93
94/-! ## Convergence Rate -/
95
96/-- The convergence rate is second order: error = O(a^2).
97 This means halving the mesh size quarters the error. -/