erdős #613
Let and be a graph with edges. Must be the union of a bipartite graph and a graph with maximum degree less than ?
Worked, still open.
graph theory · solved · formalized (Lean) · 0 attempts
use this record
vela registry pull vfr_37aec80d874a0239vela reproduce examples/erdos-problemsformal
AMS 5 · solved (literature)
theorem erdos_613 :
answer(False) ↔
∀ n ≥ 3, ∀ (V : Type*) [Fintype V] (G : SimpleGraph V), [DecidableRel G.Adj] →
G.edgeFinset.card = Nat.choose (2 * n + 1) 2 - Nat.choose n 2 - 1 →
∃ (B D : SimpleGraph V), [DecidableRel B.Adj] → [DecidableRel D.Adj] →
G = B ⊔ D ∧ B.IsBipartite ∧ ∀ v, D.degree v < nformal-conjectures/613.lean ↗links
status
solved