proven
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Theorem
Lemma 4.2 of the paper, with denominators cleared. Let induce a graph of edge density at most , and suppose . Then contains an -element set such that for every . The factor results from first selecting vertices by averaging and then retaining vertices of low degree.
Lean source view on GitHub
| 1 | import Lax54.GraphDefinitions |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Sparse graph thinning lemma |
| 6 | type: theorem |
| 7 | --- |
| 8 | Lemma 4.2 of the paper, with denominators cleared. Let induce a graph of |
| 9 | edge density at most , and suppose . Then contains an |
| 10 | -element set such that |
| 11 | for every . The factor results from |
| 12 | first selecting vertices by averaging and then retaining vertices |
| 13 | of low degree. |
| 14 | -/ |
| 15 | |
| 16 | namespace Lax54.AveragingLemma |
| 17 | |
| 18 | open Lax54.GraphDefinitions |
| 19 | |
| 20 | universe u |
| 21 | |
| 22 | /-- Lemma 4.2, with all inequalities written over the natural numbers. -/ |
| 23 | axiom sparse_graph_thinning : |
| 24 | ∀ {V : Type u} [Fintype V] [DecidableEq V] (G : SimpleGraph V) |
| 25 | [DecidableRel G.Adj] (Z : Finset V) (E m : ℕ), |
| 26 | 0 < E → 2 * m ≤ Z.card + 1 → |
| 27 | E * 2 * (G.induce (Z : Set V)).edgeFinset.card ≤ |
| 28 | Z.card * (Z.card - 1) → |
| 29 | ∃ X : Finset V, X ⊆ Z ∧ X.card = m ∧ |
| 30 | ∀ x : {v : V // v ∈ X}, |
| 31 | E * (G.induce (X : Set V)).degree x ≤ 4 * (m - 1) |
| 32 | |
| 33 | end Lax54.AveragingLemma |
| 34 |
Community review
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.
0 comments