Lax18.PartitionEnergyBounds
Bounds for partition energy
concepts/Lax18/PartitionEnergyBounds.lean · lax-18
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Theorem
The weighted mean-square density of every finite graph partition lies in the interval from zero to one. This boundedness forces the energy-increment process to terminate after a number of steps depending only on the regularity parameter.
Lean source view on GitHub
| 1 | import Lax18.PartitionEnergy |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Bounds for partition energy |
| 6 | type: theorem |
| 7 | --- |
| 8 | The weighted mean-square density of every finite graph partition lies in the |
| 9 | interval from zero to one. This boundedness forces the energy-increment |
| 10 | process to terminate after a number of steps depending only on the regularity |
| 11 | parameter. |
| 12 | -/ |
| 13 | |
| 14 | namespace Lax18.PartitionEnergyBounds |
| 15 | |
| 16 | open Lax18.FiniteGraphPartitions |
| 17 | open Lax18.PartitionEnergy |
| 18 | |
| 19 | universe u |
| 20 | |
| 21 | /-- Partition energy lies between zero and one. -/ |
| 22 | axiom partitionEnergy_mem_unitInterval : |
| 23 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 24 | (G : SimpleGraph V) (P : VertexPartition V), |
| 25 | 0 ≤ partitionEnergy G P ∧ partitionEnergy G P ≤ 1 |
| 26 | |
| 27 | end Lax18.PartitionEnergyBounds |
| 28 |
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