/- Copyright 2026 The Formal Conjectures Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -/ import FormalConjecturesUtil

Erdős Problem 920

References:

open Real Filter namespace Erdos920

$f_k(n)$ is the maximum possible chromatic number of a graph with $n$ vertices which contains no $K_k$.

noncomputable def f (k n : ) : := sSup {(G.chromaticNumber) | (G : SimpleGraph (Fin n)) (_ : G.CliqueFree k)}

Is it true that, for $k\geq 4$, $f_k(n) \gg \frac{n^{1-\frac{1}{k-1}}}{(\log n)^{c_k}}$ for some constant $c_k>0$?

@[category research open, AMS 5] theorem declaration uses 'sorry'erdos_920 : answer(sorry) k : , k 4 c > 0, (fun n f k n) (fun n (n : ) ^ (1 - 1 / ((k : ) - 1)) / (log n) ^ c) := True k 4, c > 0, (fun n => n ^ (1 - 1 / (k - 1)) / log n ^ c) =O[atTop] fun n => (f k n) All goals completed! 🐙

Graver and Yackel [GrYa68] proved that $f_k(n) \ll \left(n\frac{\log\log n}{\log n}\right)^{1-\frac{1}{k-1}}.$

@[category research solved, AMS 5] theorem declaration uses 'sorry'erdos_920.variants.upper_bound (k : ) (hk : k 3) : (fun n f k n) (fun n ((n : ) * log (log n) / log n) ^ (1 - 1 / ((k : ) - 1))) := k:hk:k 3(fun n => (f k n)) =O[atTop] fun n => (n * log (log n) / log n) ^ (1 - 1 / (k - 1)) All goals completed! 🐙

It is known that $f_3(n)\asymp (n/\log n)^{1/2}$ (see [erdosproblems.com/1104]).

@[category research solved, AMS 5] theorem declaration uses 'sorry'erdos_920.variants.k_eq_3 : (fun n (f 3 n : )) =Θ[atTop] (fun n ((n : ) / log n) ^ (1 / 2 : )) := (fun n => (f 3 n)) =Θ[atTop] fun n => (n / log n) ^ (1 / 2) All goals completed! 🐙

The lower bound $R(4,m) \gg m^3/(\log m)^4$ of Mattheus and Verstraete [MaVe23] (see [erdosproblems.com/166]) implies $f_4(n) \gg \frac{n^{2/3}}{(\log n)^{4/3}}$.

@[category research solved, AMS 5] theorem declaration uses 'sorry'erdos_920.variants.lower_bound_f4 : (fun n f 4 n) (fun n (n : ) ^ (2 / 3 : ) / (log n) ^ (4 / 3 : )) := (fun n => n ^ (2 / 3) / log n ^ (4 / 3)) =O[atTop] fun n => (f 4 n) All goals completed! 🐙

A positive answer to this question would follow from [erdosproblems.com/986]. The known bounds for that problem imply $f_k(n) \gg \frac{n^{1-\frac{2}{k+1}}}{(\log n)^{c_k}}.$

@[category research solved, AMS 5] theorem declaration uses 'sorry'erdos_920.variants.lower_bound (k : ) (hk : k 3) : c > 0, (fun n f k n) (fun (n : ) (n : ) ^ (1 - 2 / ((k : ) + 1)) / (log n) ^ c) := k:hk:k 3 c > 0, (fun n => n ^ (1 - 2 / (k + 1)) / log n ^ c) =O[atTop] fun n => (f k n) All goals completed! 🐙 end Erdos920