Erdős problem 615
Does there exist some constant such that for all sufficiently large , if is a graph with vertices and at least edges then must contain either a or an independent set on at least vertices?
Sources
FormalConjectures/ErdosProblems/
615.lean
Retained formal statement
The complementary result of Sudakov [Su03]: if then ; that is, for every and all sufficiently large , every -free graph on vertices with independence number at most has at most edges.
∀ (f : ℕ → ℝ), Filter.Tendsto (fun n => f n / √(Real.log ↑n)) Filter.atTop Filter.atTop → ∀ (ε : ℝ), 0 < ε → ∀ᶠ (n : ℕ) in Filter.atTop, ∀ (G : SimpleGraph (Fin n)), G.CliqueFree 4 → ↑G.indepNum ≤ ↑n * Real.exp (-f n) → ↑G.edgeFinset.card ≤ ε * ↑n ^ 2SolvedStatement only, no proof