theorem
proved
zero_field_converges
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.ClassicalBridge.CoarseGrain on GitHub at line 36.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
33
34/-- **THEOREM**: Trivial convergence for zero field.
35 Replaces the vacuous `∃ I, True` with a constructive witness. -/
36theorem zero_field_converges {α : Type} (CG : CoarseGrain α) :
37 discrete_to_continuum_continuity CG (fun _ => 0) := by
38 use 0
39 intro ε hε
40 use 1
41 intro n _hn
42 simp [RiemannSum]
43 exact hε
44
45end ClassicalBridge
46end IndisputableMonolith