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 upper bound of Erdős, Hajnal, Simonovits, Sós, and Szemerédi [EHSSS94]: for every there is a such that for all sufficiently large , every -free graph on vertices in which every triangle-free vertex set has at most vertices has at most edges.
∀ (ε : ℝ), 0 < ε → ∃ δ, 0 < δ ∧ ∀ᶠ (n : ℕ) in Filter.atTop, ∀ (G : SimpleGraph (Fin n)), G.CliqueFree 5 → (∀ (S : Finset (Fin n)), G.CliqueFreeOn (↑S) 3 → ↑S.card ≤ δ * ↑n) → ↑G.edgeFinset.card ≤ (1 / 12 + ε) * ↑n ^ 2SolvedStatement only, no proof