Samplinglib
Lean gate passed 2026-08-19T06:32:39.895922+00:00 · 7bcd37294df1
Reviewed teaching declaration · langevin.gibbs-weight-tail-tendsto-zero-raw-pi

tendsto_setIntegral_expNeg_norm_ge_comp_toLp_of_lintegral_expNeg_ne_top

compiled Samplinglib leaf Partial explicit smoke test

If the unnormalized Gibbs weight has finite total mass, then its mass outside expanding Euclidean balls tends to zero.

Plain-English statement

If the unnormalized Gibbs weight has finite total mass, then its mass outside expanding Euclidean balls tends to zero.

Scope guard. This card records a compiled local declaration. Its mathematical scope is exactly the Lean statement below; the Registry note and source correspondence may describe motivation but do not strengthen it.

Mathematical statement

If integral exp(-V(x)) dx is finite, then integral over {x : R <= norm(x)} of exp(-V(x)) dx tends to zero as R tends to infinity.

Intuition

An integrable density cannot retain positive mass arbitrarily far into the tail. ASTIS states this in the same raw finite-coordinate representation used by the radial cutoffs.

Conditions

  • The potential V is continuous, so the Gibbs weight is measurable.
  • The ENNReal integral of exp(-V) is finite.

Why these conditions cannot be dropped

  • Tail convergence is an L1 consequence and therefore needs finite total mass.
  • Continuity is stronger than the minimal measurability assumption, but matches the current Chapter 1 Langevin interface and avoids a hidden measurable-representative choice.

Proof route

  • Convert finite ENNReal Gibbs mass into real-valued Integrable on Euclidean space.
  • Transport integrability through the volume-preserving PiLp coordinate equivalence.
  • Apply the generic antitone expanding-ball tail theorem to the Gibbs weight.
  • Use positivity of Real.exp to remove the scalar norm.

Lean interface notes

  • The tail family is indexed by real radii and converges in the atTop filter.
  • The generic tail theorem is stored in Analysis.Calculus.Divergence and is independent of Gibbs measures.
  • This result does not assemble weighted integration by parts or any semigroup invariance statement.
Lean learning studio · mathematics → formal proof

Read the mathematics first, then descend into Lean

You do not need to know Lean before opening this panel. The page keeps the paper-level theorem, rigorous proof obligations, exact Lean declaration, and proof dependencies as separate layers so a first-time reader can move down one layer at a time.

BeginnerWhy this theorem exists → intuition → statement → one hand calculation. Hide proof-engineering detail.
RigorousExpose assumptions, hidden measure/limit/domain issues, proof route, and rigorous references.
Lean learnerOpen the exact declaration, proof tree/network, syntax glossary, and line-by-line explanation.

Proof architecture

Start with the tree when learning: prerequisites sit below the theorem and downstream results sit above it. Switch to the network when you want to understand where this declaration lives in the local formal library. Every mapped node is clickable.

Loading source-derived dependency evidence…

Graph rule: only dependencies found by the ASTIS source scan are drawn. Missing tactic indirection is treated as an under-approximation; the site never invents an edge just to make a prettier graph.

How to read the exact Lean declaration

Read a Lean theorem left-to-right exactly as you would unpack a mathematical sentence: name → ambient types → automatically inferred structures → explicit hypotheses → conclusion → proof. Then read the proof top-to-bottom as transformations of the current goal.

  1. NameWhat reusable mathematical fact is being created?
  2. ParametersWhich symbols are arbitrary, and which structures are inferred by typeclass search?
  3. PropositionAfter the colon, translate the Lean expression back into a paper statement.
  4. Proof actionsAfter by, ask what each tactic does to the mathematical goal—not only what syntax it uses.

Syntax used on this page

This glossary is filtered to syntax that actually occurs in the declaration above. Open a symbol only when you meet it, rather than memorizing Lean grammar in advance.

Source voice and ASTIS voice stay separate

When Samplinglib shows a short quotation from Chewi, it is labeled as a source excerpt and linked to the canonical book page. Intuition, expanded proof steps, hidden regularity assumptions, and Lean explanations are ASTIS-authored commentary. A quotation never substitutes for a formal proof, and an ASTIS explanation is never attributed to the textbook author.

Lean statement

theorem tendsto_setIntegral_expNeg_norm_ge_comp_toLp_of_lintegral_expNeg_ne_top
    {n : ℕ}
    {V : EuclideanSpace ℝ (Fin (n + 1)) → ℝ}
    (hV : Continuous V)
    (hZ : (∫⁻ y : EuclideanSpace ℝ (Fin (n + 1)),
      ENNReal.ofReal (Real.exp (-V y)) ∂volume) ≠ ∞) :
    Tendsto
      (fun R : ℝ => ∫ x in
        {x : Fin (n + 1) → ℝ |
          R ≤ ‖(WithLp.toLp 2 x : EuclideanSpace ℝ (Fin (n + 1)))‖},
        Real.exp (-V (WithLp.toLp 2 x : EuclideanSpace ℝ (Fin (n + 1))))
          ∂volume)
      atTop (nhds 0) := by
  have htail :=
    _root_.AutoSamplingTheory.TechnicalLemmas.Analysis.Calculus.Divergence.tendsto_setIntegral_norm_norm_ge_comp_toLp
      (integrable_expNeg_comp_toLp_of_lintegral_expNeg_ne_top hV hZ)
  simpa [Real.norm_eq_abs, abs_of_pos (Real.exp_pos _)] using htail

/-- Whole-space Gibbs-weighted Langevin integration by parts for a compactly
supported `C²` test function:
`∫ exp (-V) * (Δ f - ⟪∇V, ∇f⟫) = 0`.

The proof builds the raw finite-Pi vector field `exp (-V) * Df`, proves that
it is `C¹` and compactly supported, applies the reusable whole-space
coordinate-divergence theorem, identifies its trace with the Langevin
generator display pointwise, and transports volume back to Euclidean space.
No finite Gibbs-mass assumption is needed because the test function is
compactly supported.

This is the analytic core identity used by a later generator-domain and
semigroup-to-invariance bridge.  It does not itself construct a closed
generator, a Markov semigroup, or an invariant probability measure. -/
Common pitfall. A wrapper or display identity is not a new analytic theorem merely because it has its own Lean name. Check the statement, hypotheses, and downstream consumers before interpreting its mathematical contribution.