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

H_Convergence

definition
show as:
view math explainer →
module
IndisputableMonolith.ClassicalBridge.CoarseGrain
domain
ClassicalBridge
line
22 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.ClassicalBridge.CoarseGrain on GitHub at line 22.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

used by

formal source

  19  divergence_form : Prop
  20
  21/-- **HYPOTHESIS**: Coarse-grained Riemann sums converge to a finite limit. -/
  22def H_Convergence (CG : CoarseGrain α) (f : α → ℝ) (I : ℝ) : Prop :=
  23  ∀ ε > 0, ∃ N, ∀ n ≥ N, |RiemannSum CG f n - I| < ε
  24
  25/-- Discrete→continuum continuity: if the coarse-grained Riemann sums of a divergence observable
  26    converge to a finite limit `I`, the divergence-form statement holds.
  27
  28    STATUS: SCAFFOLD — The existence of the limit I is a hypothesis.
  29    TODO: Prove convergence for specific LNAL distributions. -/
  30def discrete_to_continuum_continuity {α : Type}
  31  (CG : CoarseGrain α) (div : α → ℝ) : Prop :=
  32  ∃ I : ℝ, H_Convergence CG div I
  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