Erdős Problem 865
erdos_865theorem
There exists a constant such that, for all large , if has size at least then there are distinct such that . A problem of Erdős and Sós (also earlier considered by Choi, Erdős, and Szemerédi [CES75], but Erdős had forgotten this).
theorem erdos_865 :
∃ C > 0, ∀ᶠ (N : ℕ) in atTop,
∀ A ⊆ Icc 1 N, A.card ≥ (5 / 8 : ℝ) * N + C →
∃ a ∈ A, ∃ b ∈ A, ∃ c ∈ A, a ≠ b ∧ a ≠ c ∧ b ≠ c ∧
a + b ∈ A ∧ a + c ∈ A ∧ b + c ∈ A := by
sorryk2theorem
It is a classical folklore fact that if has size then there are distinct such that , which establishes the case.
theorem erdos_865.variants.k2 (N : ℕ) :
∀ A ⊆ Icc 1 (2 * N), A.card ≥ N + 2 →
∃ a ∈ A, ∃ b ∈ A, a ≠ b ∧ a + b ∈ A := by
sorryfdef
noncomputable def f (N k : ℕ) : ℕ :=
sInf {m | ∀ A ⊆ Icc 1 N, A.card ≥ m →
∃ S ⊆ A, S.card = k ∧ ∀ x ∈ S, ∀ y ∈ S, x ≠ y → x + y ∈ A}sostheorem
Erdős and Sós conjectured that , where is the minimal size of a subset of guaranteeing elements have all pairwise sums in the set.
theorem erdos_865.variants.sos :
∀ᵉ (k : ℕ) (hk : 2 ≤ k),
(fun N ↦ (f N k : ℝ)) ~[atTop] (fun N ↦ (1 / 2 : ℝ) * (1 + ∑ r ∈ Icc 1 (k - 2),
(1 / 4 : ℝ) ^ r) * N) := by
sorryupper_boundtheorem
Choi, Erdős, and Szemerédi [CES75] have proved that, for all , there exists such that (for large enough ) .
theorem erdos_865.variants.upper_bound (k : ℕ) (hk : 3 ≤ k) :
∃ ε > 0, ∀ᶠ N in atTop, (f N k : ℝ) ≤ (2 / 3 - ε) * N := by
sorrygoaldef
There exists a constant such that, for all large , if has size at least then there are distinct such that . A problem of Erdős and Sós (also earlier considered by Choi, Erdős, and Szemerédi [CES75], but Erdős had forgotten this).
def goal : Prop :=
∃ C > 0, ∀ᶠ (N : ℕ) in atTop,
∀ A ⊆ Icc 1 N, A.card ≥ (5 / 8 : ℝ) * N + C →
∃ a ∈ A, ∃ b ∈ A, ∃ c ∈ A, a ≠ b ∧ a ≠ c ∧ b ≠ c ∧
a + b ∈ A ∧ a + c ∈ A ∧ b + c ∈ Aimport Conjectura.Problems.EP0032.Statement · maintainer — open · raw source
Adapted for Conjectura from formal-conjectures (Google DeepMind), `ErdosProblems/865.lean`. The problem is catalogued at https://www.erdosproblems.com/865. LOCKED: solvers cannot modify this file.
Copyright (c) 2025 The Formal Conjectures Authors. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: The Formal Conjectures Authors