/- 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 757

References:

    erdosproblems.com/757

    [GyLe95] Gyárfás, András and Lehel, Jenő, Linear sets with five distinct differences among any four elements. J. Combin. Theory Ser. B (1995), 108-118.

open scoped Pointwiseopen Filternamespace Erdos757

We say that c is admissible if, for any finite set A such that every four-element subset B determines at least five positive differences, there exists a Sidon subset S of size at least c * A.ncard. The difference condition is equivalent to 11 ≤ (B - B).ncard.

def IsAdmissible (c : ) : Prop := {A : Set }, A.Finite ( B A, B.ncard = 4 11 (B - B).ncard) S A, IsSidon S c * A.ncard (S.ncard : )

What is the supremum of the set of admissible numbers?

@[category research open, AMS 5] theorem erdos_757 {A : Set } : answer(sorry) = sSup {c | IsAdmissible c} := A:Set sorry = sSup {c | IsAdmissible c} All goals completed! 🐙

The supremum is strictly larger than 1 / 2, which is proved in [GyLe95].

@[category research solved, AMS 5] theorem erdos_757.variants.lowerBound {A : Set } : 1 / (2 : ) < sSup {c | IsAdmissible c} := A:Set 1 / 2 < sSup {c | IsAdmissible c} All goals completed! 🐙

In [GyLe95], the authors also prove that the supremum is smaller than 3 / 5.

@[category research solved, AMS 5] theorem erdos_757.variants.upperBound {A : Set } : sSup {c | IsAdmissible c} < 3 / (5 : ) := A:Set sSup {c | IsAdmissible c} < 3 / 5 All goals completed! 🐙end Erdos757