Erdős problem 599
Erdős Problem 599 (the Erdős–Menger conjecture).
Sources
FormalConjectures/ErdosProblems/
599.lean
Retained formal statement
Erdős Problem 599 (the Erdős–Menger conjecture).
Let be a (possibly infinite) graph and let be disjoint independent sets of vertices. Must there exist a family of pairwise vertex-disjoint paths from to , and a set of vertices containing exactly one vertex from each path in , such that every path from to contains at least one vertex of ?
For finite this is equivalent to Menger's theorem. The answer is yes, proved by Aharoni and Berger [AhBe09].
True ↔ ∀ (V : Type) (G : SimpleGraph V) (A B : Set V), Disjoint A B → G.IsIndepSet A → G.IsIndepSet B → ∃ ι a b p S, (∀ (i : ι), a i ∈ A) ∧ (∀ (i : ι), b i ∈ B) ∧ (∀ (i : ι), (p i).IsPath) ∧ (Pairwise fun i j => Disjoint {v | v ∈ (p i).support} {v | v ∈ (p j).support}) ∧ S ⊆ {v | ∃ i, v ∈ (p i).support} ∧ (∀ (i : ι), ∃! v, v ∈ S ∧ v ∈ (p i).support) ∧ ∀ a' ∈ A, ∀ b' ∈ B, ∀ (q : G.Walk a' b'), q.IsPath → ∃ v ∈ q.support, v ∈ SSolvedStatement only, no proof