Erdős Problem 865
Conjectura.Problems.EP0032.Statement
/-
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
-/
import Mathlib
/-! # Erdős Problem 865
## Source
Adapted for Conjectura from [formal-conjectures](https://github.com/google-deepmind/formal-conjectures) (Google DeepMind), `ErdosProblems/865.lean`. The problem is catalogued at [https://www.erdosproblems.com/865](https://www.erdosproblems.com/865).
LOCKED: solvers cannot modify this file.
-/
open Finset Filter
open scoped Asymptotics
namespace Conjectura.EP0032
/--
There exists a constant $C>0$ such that, for all large $N$, if $A\subseteq \{1,\ldots,N\}$ has
size at least $\frac{5}{8}N+C$ then there are distinct $a,b,c\in A$ such that $a+b,a+c,b+c\in A$.
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
sorry
/--
It is a classical folklore fact that if $A\subseteq \{1,\ldots,2N\}$ has size $\geq N+2$ then
there are distinct $a,b\in A$ such that $a+b\in A$, which establishes the $k=2$ 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
sorry
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}
/--
Erdős and Sós conjectured that
$f_k(N)\sim \frac{1}{2}\left(1+\sum_{1\leq r\leq k-2}\frac{1}{4^r}\right) N$,
where $f_k(N)$ is the minimal size of a subset of $\{1, \dots, N\}$ guaranteeing $k$ 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
sorry
/--
Choi, Erdős, and Szemerédi [CES75] have proved that, for all $k\geq 3$, there exists $\epsilon_k>0$
such that (for large enough $N$) $f_k(N)\leq \left(\frac{2}{3}-\epsilon_k\right)N$.
-/
theorem erdos_865.variants.upper_bound (k : ℕ) (hk : 3 ≤ k) :
∃ ε > 0, ∀ᶠ N in atTop, (f N k : ℝ) ≤ (2 / 3 - ε) * N := by
sorry
/-- There exists a constant $C>0$ such that, for all large $N$, if $A\subseteq \{1,\ldots,N\}$ has size at least $\frac{5}{8}N+C$ then there are distinct $a,b,c\in A$ such that $a+b,a+c,b+c\in A$. 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 ∈ A
end Conjectura.EP0032