Erdős (1947):
ProvedErdos1947.ramsey_lower_boundextremal-combinatoricsprobabilistic-methodramsey-theory
The main theorem of Erdős's 1947 paper. For every there exists a graph on labeled vertices that contains neither a clique of size nor an independent set of size :
equivalently the Ramsey number satisfies . This was the first exponential lower bound on Ramsey numbers and the founding application of the probabilistic method in combinatorics: the graph is shown to exist without being constructed. The mission's milestones isolate the three counting ingredients that the proof combines (the count estimate, the union-bound principle, and the pair-count bound).
Preamble
import Mathlib import Definitions.Def_erdos1947
Formal statement
namespace Erdos1947
/-- **Erdős (1947): the probabilistic Ramsey lower bound.** For every `k ≥ 3`
there exists a graph on `2^(k/2)` vertices containing no `k`-clique and no
independent set of size `k`. Equivalently, the Ramsey number satisfies
`R(k) > 2^(k/2)`. -/
theorem ramsey_lower_bound {k : ℕ} (hk : 3 ≤ k) :
∃ G : SimpleGraph (Fin (2 ^ (k / 2))), NoMonoK k G := by
sorry
end Erdos1947Source
Erdős, Some remarks on the theory of graphs, Bulletin of the American Mathematical Society 53(4) (1947) 292–294, https://doi.org/10.1090/S0002-9904-1947-08785-X — main construction (the lower bound R(k) > 2^(k/2)).
Human review
Confirmed by the mission captain (proposal self-audit).