Lax18.EnergyIncrement
The energy-increment refinement lemma
concepts/Lax18/EnergyIncrement.lean · lax-18
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Theorem
This is the standard energy-increment step. If an equitable partition P is not ε-regular, witnesses for all irregular pairs simultaneously split its classes. The resulting refinement has at most k·2^k classes and raises the energy by at least ε⁵/4. The constant is deliberately conservative; what matters for the regularity lemma is a positive increment depending only on ε.
Lean source view on GitHub
| 1 | import Lax18.PartitionEnergy |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: The energy-increment refinement lemma |
| 6 | type: theorem |
| 7 | --- |
| 8 | This is the standard energy-increment step. If an equitable partition P is |
| 9 | not ε-regular, witnesses for all |
| 10 | irregular pairs simultaneously split its classes. The resulting refinement |
| 11 | has at most k·2^k classes and raises the energy by at least ε⁵/4. |
| 12 | The constant is deliberately conservative; what matters |
| 13 | for the regularity lemma is a positive increment depending only on |
| 14 | ε. |
| 15 | -/ |
| 16 | |
| 17 | namespace Lax18.EnergyIncrement |
| 18 | |
| 19 | open Lax18.FiniteGraphPartitions |
| 20 | open Lax18.PartitionEnergy |
| 21 | open Lax18.RegularPartitions |
| 22 | |
| 23 | universe u |
| 24 | |
| 25 | /-- An irregular equitable partition admits a bounded refinement with a |
| 26 | definite energy increment. -/ |
| 27 | axiom energy_increment_refinement : |
| 28 | ∀ (ε : ℝ), |
| 29 | 0 < ε → |
| 30 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 31 | (G : SimpleGraph V) (P : VertexPartition V), |
| 32 | P.Equitable → |
| 33 | ¬ IsRegularPartition G ε P → |
| 34 | ∃ Q : VertexPartition V, |
| 35 | Refines Q P ∧ |
| 36 | P.partCount ≤ Q.partCount ∧ |
| 37 | Q.partCount ≤ P.partCount * 2 ^ P.partCount ∧ |
| 38 | partitionEnergy G P + ε ^ 5 / 4 ≤ |
| 39 | partitionEnergy G Q |
| 40 | |
| 41 | end Lax18.EnergyIncrement |
| 42 |
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