Documentation

FormalConjectures.ErdosProblems.«22»

Erdős Problem 22 #

The central problem of Ramsey–Turán theory: writing $\mathrm{rt}(n; k, \ell)$ for the maximum number of edges of a $K_k$-free graph on $n$ vertices whose largest independent set has size less than $\ell$, is it true that for every $\epsilon > 0$ and all sufficiently large $n$ $$\mathrm{rt}(n; 4, \epsilon n) \geq n^2/8?$$

Conjectured by Bollobás and Erdős [BoEr76], who constructed such a graph with $(1/8 + o(1))n^2$ edges. Together with the matching upper bound $\mathrm{rt}(n; 4, \epsilon n) \leq (1/8 + o(1))n^2$ of Szemerédi [Sz72], this determines the Ramsey–Turán density of $K_4$ to be $1/8$. The conjecture as stated was proved by Fox, Loh, and Zhao [FLZ15].

References:

theorem Erdos22.erdos_22 :
True ∀ (ε : ), 0 < ε∀ᶠ (n : ) in Filter.atTop, ∃ (G : SimpleGraph (Fin n)), G.CliqueFree 4 G.indepNum ε * n n ^ 2 / 8 G.edgeFinset.card

Let $\epsilon > 0$ and let $n$ be sufficiently large depending on $\epsilon$. Is there a graph on $n$ vertices with at least $n^2/8$ many edges which contains no $K_4$, such that the largest independent set has size at most $\epsilon n$?

This is true, as proved by Fox, Loh, and Zhao [FLZ15].

theorem Erdos22.erdos_22.variants.szemeredi_upper (ε : ) ( : 0 < ε) :
∃ (δ : ), 0 < δ ∀ᶠ (n : ) in Filter.atTop, ∀ (G : SimpleGraph (Fin n)), G.CliqueFree 4G.indepNum δ * nG.edgeFinset.card (1 / 8 + ε) * n ^ 2

The matching upper bound, due to Szemerédi [Sz72]: a $K_4$-free graph on $n$ vertices whose independence number is sublinear in $n$ has at most $(1/8 + o(1))n^2$ edges. That is, for every $\epsilon > 0$ there is a $\delta > 0$ such that for all sufficiently large $n$, every $K_4$-free graph $G$ on $n$ vertices with $\alpha(G) \leq \delta n$ has at most $(1/8 + \epsilon)n^2$ edges.

theorem Erdos22.erdos_22.variants.bollobas_erdos_lower (ε δ : ) ( : 0 < ε) ( : 0 < δ) :
∀ᶠ (n : ) in Filter.atTop, ∃ (G : SimpleGraph (Fin n)), G.CliqueFree 4 G.indepNum δ * n (1 / 8 - ε) * n ^ 2 G.edgeFinset.card

The construction of Bollobás and Erdős [BoEr76]: for every $\epsilon > 0$ and $\delta > 0$, for all sufficiently large $n$ there is a $K_4$-free graph on $n$ vertices with independence number at most $\delta n$ and at least $(1/8 - \epsilon)n^2$ edges. Together with erdos_22.variants.szemeredi_upper this shows that the Ramsey–Turán density of $K_4$ is $1/8$.

theorem Erdos22.erdos_22.variants.fox_loh_zhao :
∃ (C : ), 0 < C ∀ᶠ (n : ) in Filter.atTop, ∃ (G : SimpleGraph (Fin n)), G.CliqueFree 4 G.indepNum C * Real.log (Real.log n) ^ (3 / 2) / Real.log n ^ (1 / 2) * n n ^ 2 / 8 G.edgeFinset.card

The quantitative strengthening proved by Fox, Loh, and Zhao [FLZ15]: there is a constant $C > 0$ such that for all sufficiently large $n$ there exists a $K_4$-free graph on $n$ vertices with at least $n^2/8$ edges whose largest independent set has size at most $$C \cdot \frac{(\log\log n)^{3/2}}{(\log n)^{1/2}} \cdot n.$$

theorem Erdos22.erdos_22.variants.test_bot (n : ) (ε : ) ( : 0 < ε) :
.CliqueFree 4 .edgeFinset.card (1 / 8 + ε) * n ^ 2

A sanity check for erdos_22.variants.szemeredi_upper: the empty graph is $K_4$-free and trivially satisfies the upper bound $(1/8 + \epsilon)n^2$ on the number of edges.