/- Copyright 2025 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 import FormalConjecturesForMathlib.Combinatorics.Basic

Erdős Problem 14

Reference: erdosproblems.com/14

namespace Erdos14 open Asymptotics Filter

The number of integers in ${1,\ldots,N}$ which are not representable in exactly one way as the sum of two elements from $A$ (either because they are not representable at all, or because they are representable in more than one way).

noncomputable def nonUniqueSumCount (A : Set ) (N : ) : := ((Set.Icc 1 N) \ (allUniqueSums A)).ncard noncomputable def almostSquareRoot (ε : ) (N : ) : := N ^ (1/2 - ε) noncomputable def squareRoot (N : ) : := Real.sqrt N

Let $A ⊆ \mathbb{N}$. Let $B ⊆ \mathbb{N}$ be the set of integers which are representable in exactly one way as the sum of two elements from $A$. Is it true that for all $\epsilon > 0$ and large $N$, $|{1,\ldots,N} \setminus B| \gg_\epsilon N^{1/2 - \epsilon}$?

@[category research open, AMS 11] theorem declaration uses 'sorry'erdos_14.parts.i : answer(sorry) A, ε > 0, nonUniqueSumCount A almostSquareRoot ε := True (A : Set ), ε > 0, almostSquareRoot ε =O[atTop] nonUniqueSumCount A All goals completed! 🐙

Is it possible that $|{1,\ldots,N} \setminus B| = o(N^\frac{1}{2})$?

@[category research open, AMS 11] theorem declaration uses 'sorry'erdos_14.parts.ii : answer(sorry) (A : Set ), IsLittleO atTop (nonUniqueSumCount A) squareRoot := True A, nonUniqueSumCount A =o[atTop] squareRoot All goals completed! 🐙 end Erdos14