proven
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
-
no assumptions
thm✓Lax17.SinghLau
Theorem
A feasible bounded-degree spanning-tree point can be rounded with an additive-one loss in the maximum degree.
Lean source view on GitHub
| 1 | import Mathlib.Combinatorics.SimpleGraph.Acyclic |
| 2 | import Lax17.Degree |
| 3 | import Lax17.SpanningTreeRounding |
| 4 | |
| 5 | /-! |
| 6 | --- |
| 7 | title: Singh--Lau bounded-degree spanning-tree theorem |
| 8 | type: theorem |
| 9 | --- |
| 10 | A feasible bounded-degree spanning-tree point can be rounded with an |
| 11 | additive-one loss in the maximum degree. |
| 12 | -/ |
| 13 | |
| 14 | namespace Lax17.SinghLau |
| 15 | |
| 16 | universe u |
| 17 | |
| 18 | /-- Singh--Lau additive-one bounded-degree spanning-tree rounding. -/ |
| 19 | axiom singhLauBoundedDegreeSpanningTree : |
| 20 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 21 | (G : SimpleGraph V) (B : ℕ), |
| 22 | 1 < Fintype.card V → |
| 23 | Lax17.SpanningTreeRounding.FeasiblePoint G B → |
| 24 | ∃ T : SimpleGraph V, |
| 25 | T ≤ G ∧ T.IsTree ∧ Lax17.Degree.MaximumAtMost T (B + 1) |
| 26 | |
| 27 | end Lax17.SinghLau |
| 28 |
Used by
none
From Mathlib
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