Erdős problem 533
Let . If is sufficiently large and is a graph on vertices with no and at least edges, must contain a set of vertices spanning no triangle?
Sources
FormalConjectures/ErdosProblems/
533.lean
Retained formal statement
The contrasting positive result of Erdős, Hajnal, Simonovits, Sós, and Szemerédi [EHSSS94]: the analogue of erdos_533 is true. For every there is a such that for all sufficiently large , every -free graph on vertices with at least edges contains a triangle-free vertex set of size at least .
∀ (δ : ℝ), 0 < δ → ∃ c, 0 < c ∧ ∀ᶠ (n : ℕ) in Filter.atTop, ∀ (G : SimpleGraph (Fin n)), G.CliqueFree 4 → δ * ↑n ^ 2 ≤ ↑G.edgeFinset.card → ∃ S, c * ↑n ≤ ↑S.card ∧ G.CliqueFreeOn (↑S) 3SolvedStatement only, no proof