Concentration scaffold for the First Sampling Lemma #
The First Sampling Lemma (first_sampling_lemma, proved 2026-07-08 in
Graphon/SamplingLemma.lean) was the sampling route's one analytic sorry. This file
decomposes it along the classical two-stage analysis: all statements here are proved
or packaged as hypotheses of a proved reduction.
The two-stage decomposition (Lovász, Large Networks and Graph Limits, §10.5–10.6):
condition on the sampled points x : Fin k → α, and interpolate through the weighted
sampled graphon H_{W,x} := sampleWeightedGraphonOn W x (matrix entries W(xᵢ, xⱼ) on
the equal-measure k-partition):
- Point sampling (
PointSamplingEvent): with probability≥ 1 − η₁overx,d_□(W, H_{W,x}) < ε/2— the genuinely analytic step (Lemma 10.11 / Azuma). - Rounding (
RoundingEvent): conditionally on (a.e.)x, the Bernoulli edge roundingGofH_{W,x}satisfiesd_□(H_{W,x}, K_G) < ε/2with conditional probability≥ 1 − η₂— a finite union bound over cuts.
sampleGoodMassOn_of_events (PROVED) recombines the two stages into the good-mass
bound demanded by first_sampling_lemma; the deterministic triangle route
cutDistance_ofSimpleGraphOn_le is the gluing inequality. Both events were established
with W-uniform k (point_sampling_event_of_large_k, rounding_event_of_large_k),
completing first_sampling_lemma (2026-07-08, Graphon/SamplingLemma.lean).
Main declarations #
Graphon.sampleMassAt— the conditional edge distribution at fixed sampled points, withsampleMass W G = ∫ x, sampleMassAt W x GGraphon.sampleWeightedGraphonOn— the weighted sampled step graphonH_{W,x}Graphon.cutDistance_ofSimpleGraphOn_le— the deterministic triangle routeGraphon.PointSamplingEvent,Graphon.RoundingEvent— the two concentration eventsGraphon.sampleGoodMassOn_of_events— the PROVED reduction: both events ⟹ the good-mass bound offirst_sampling_lemma
The conditional edge distribution: the probability that the sampled graph equals
G, conditioned on the sampled points being x. (Definitionally the integrand of
sampleMass.)
Equations
- W.sampleMassAt x G = W.sampleIntegrand G x
Instances For
The unconditional mass integrates the conditional one over the sampled points.
The conditional masses form a probability distribution at every point.
The conditional masses are nonnegative for a.e. sampled points.
The weighted sampled step graphon H_{W,x}: on the chosen equal-measure
k-partition (the same equipartition k used by ofSimpleGraphOn), the cell (i, j)
carries the entry W(xᵢ, xⱼ) — clamped into [0,1] and evaluated at the
(min, max)-ordered pair, so the coefficients are pointwise symmetric and bounded (the
clamp and the ordering are invisible a.e. in x since W is a.e. [0,1]-valued and
a.e. symmetric).
Equations
- One or more equations did not get rendered due to their size.
Instances For
The deterministic triangle route: closeness of W to the weighted sample and of
the weighted sample to the rounded graph combine into goodness of the sampled graph.
Stage 1 — point-sampling concentration (event form): with probability ≥ 1 − η
over the sampled points, the weighted sampled graphon is ε-close to W. The
measurable witness set is part of the data (measurability of x ↦ d_□(W, H_{W,x}) is
not needed anywhere). This is the genuinely analytic content of the First Sampling
Lemma (Lovász Lemma 10.11 / Azuma–Hoeffding).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Stage 2 — rounding concentration (event form): for a.e. sampled points, the
Bernoulli edge rounding lands ε-close to the weighted sampled graphon with conditional
probability ≥ 1 − η. A finite union bound over cuts (proved:
rounding_event_of_large_k, Graphon/SamplingRounding.lean; the a.e. qualifier
absorbs the pointwise pathologies of the L⁰ representative).
Equations
- One or more equations did not get rendered due to their size.
Instances For
The recombination (PROVED): the two concentration events at accuracy ε/2 yield
the good-mass bound demanded by first_sampling_lemma at accuracy ε. Both events were
subsequently established with W-uniform k (point_sampling_event_of_large_k,
rounding_event_of_large_k), completing the First Sampling Lemma — no new independent
assumption is introduced anywhere in the chain.