Convergence of Graphon Sequences #
This file establishes the main theorems characterizing convergence of graphon sequences in cut distance, bringing together the counting lemma, inverse counting lemma, and compactness results.
Main results #
Graphon.converges_iff_homDensity— Cut distance convergence ⟺ hom density convergenceGraphon.exists_convergent_subsequence— Every sequence has a convergent subsequence (compactness)Graphon.isCauchy_iff_isConvergent— Cauchy ⟺ convergent
Implementation notes #
This file brings together the key results:
- Counting lemma: cut distance bounds → hom density bounds
- Inverse counting lemma: hom density bounds → cut distance bounds
- Compactness: every sequence has convergent subsequence
- Completeness: Cauchy sequences converge
The main theorem is that the following are equivalent for a graphon sequence (Wₙ):
- (Wₙ) converges in cut distance to some graphon W
- (t(F, Wₙ)) converges for all finite graphs F
- (Wₙ) is Cauchy in cut distance
References #
- [L. Lovász, Large Networks and Graph Limits][lovasz2012], Chapter 11
Equivalent characterizations of convergence #
A sequence of graphons is convergent in cut distance.
Equations
- Graphon.IsConvergent W = ∃ (V : Graphon α μ), ∀ ε > 0, ∃ (N : ℕ), ∀ n ≥ N, (W n).cutDistance V < ε
Instances For
A sequence of graphons has convergent homomorphism densities for all graphs.
Quantifies over graphs on Fin k for all k : ℕ; this is equivalent to
quantifying over all finite types since every Fintype embeds into some Fin k.
Equations
- Graphon.HasConvergentHomDensities W = ∀ (k : ℕ) (F : SimpleGraph (Fin k)) [inst : DecidableRel F.Adj], ∃ (L : ℝ), ∀ ε > 0, ∃ (N : ℕ), ∀ n ≥ N, |Graphon.homDensity F (W n) - L| < ε
Instances For
Main theorem: cut distance convergence is equivalent to homomorphism density convergence.
A sequence of graphons converges in cut distance if and only if all homomorphism densities converge.
Convergent sequences are Cauchy.
Cauchy sequences are convergent (completeness).
Cauchy ⟺ Convergent (on standard Borel spaces).
Compactness characterization #
Every sequence has a convergent subsequence (sequential compactness).
The limit of a convergent sequence is unique up to weak isomorphism.
Summary theorems #
Main Theorem: Characterization of graph limit convergence.
The following are equivalent:
- Cut distance convergence to some graphon W
- All homomorphism densities converge
- The sequence is Cauchy in cut distance
Moreover, any convergent sequence has a unique limit up to weak isomorphism, and every sequence has a convergent subsequence.
Hypothesis: Requires [StandardBorelSpace α] for the Cauchy ↔ Convergent equivalence.