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

References:

    erdosproblems.com/1190

    [BFV13] de la Bretèche, Régis and Ford, Kevin and Vandehey, Joseph, On non-intersecting arithmetic progressions. Acta Arith. (2013), 381-392.

    [Er80] Erdős, Paul, A survey of problems in combinatorial number theory. Ann. Discrete Math. (1980), 89-115.

open Filter Realopen scoped Topologynamespace Erdos1190

$\epsilon_m$ is the supremum of $\sum \frac{1}{n_i}$ over all finite sequences $m<n_1<\cdots<n_k$ for which there exist congruences $a_i\pmod{n_i}$ such that no integer satisfies two such congruences.

noncomputable def eps (m : ) : := sSup {s : | (S : Finset ) (a : ), ( n S, m < n) ( n S, n' S, n n' ¬ x : , x a n [ZMOD n] x a n' [ZMOD n']) ( n S, (n : )⁻¹) = s}

Let $$\epsilon_m=\max \sum \frac{1}{n_i}$$ where the maximum is taken over all finite sequences $m<n_1<\cdots<n_k$ for which there exist congruences $a_i\pmod{n_i}$ such that no integer satisfies two such congruences.

Estimate $\epsilon_m$.

The resolution of [202] by GPT-5.4 Pro implies via the same reduction that $$\epsilon_m=L(m)^{-1+o(1)},$$ where $L(m)=\exp(\sqrt{\log m\log\log m})$.

@[category research solved, AMS 5 11, formal_proof using lean4 at "https://github.com/plby/lean-proofs/blob/main/src/v4.29.1/ErdosProblems/Erdos1190.lean"] theorem erdos_1190 : ε : , 0 < ε ∀ᶠ m : in atTop, scaleL m ^ (-1 - ε : ) < eps m eps m < scaleL m ^ (-1 + ε : ) := (ε : ), 0 < ε ∀ᶠ (m : ) in atTop, scaleL m ^ (-1 - ε) < eps m eps m < scaleL m ^ (-1 + ε) All goals completed! 🐙

Erdős [Er80] seems to credit Mirsky and Newman with the result that $\epsilon_m<1$, but gives no reference.

@[category research solved, AMS 5 11] theorem erdos_1190.variants.lt_one (m : ) (hm : 1 m) (S : Finset ) (a : ) (hS : n S, m < n) (hdisj : n S, n' S, n n' ¬ x : , x a n [ZMOD n] x a n' [ZMOD n']) : ( n S, (n : )⁻¹) < 1 := m:hm:1 mS:Finset a: hS: n S, m < nhdisj: n S, n' S, n n' ¬ x, x a n [ZMOD n] x a n' [ZMOD n'] n S, (↑n)⁻¹ < 1 All goals completed! 🐙

He could not even decide whether $\epsilon_m\to 0$ as $m\to \infty$.

@[category research solved, AMS 5 11] theorem erdos_1190.variants.tendsto_zero : Tendsto eps atTop (𝓝 0) := Tendsto eps atTop (𝓝 0) All goals completed! 🐙

The work of de la Bretèche, Ford, and Vandehey [BFV13] implies $$L(m)^{-1+o(1)}< \epsilon_m < L(m)^{-\sqrt{3}/2+o(1)},$$ where $L(m)=\exp(\sqrt{\log m\log\log m})$. The lower bound is implicit in their construction.

@[category research solved, AMS 5 11] theorem erdos_1190.variants.lower_bound : ε : , 0 < ε ∀ᶠ m : in atTop, scaleL m ^ (-1 - ε : ) < eps m := (ε : ), 0 < ε ∀ᶠ (m : ) in atTop, scaleL m ^ (-1 - ε) < eps m All goals completed! 🐙

The work of de la Bretèche, Ford, and Vandehey [BFV13] implies $$L(m)^{-1+o(1)}< \epsilon_m < L(m)^{-\sqrt{3}/2+o(1)},$$ where $L(m)=\exp(\sqrt{\log m\log\log m})$. The upper bound follows immediately from their upper bound as reported in [202] and partial summation.

@[category research solved, AMS 5 11] theorem erdos_1190.variants.upper_bound : ε : , 0 < ε ∀ᶠ m : in atTop, eps m < scaleL m ^ (-(sqrt 3 / 2) + ε : ) := (ε : ), 0 < ε ∀ᶠ (m : ) in atTop, eps m < scaleL m ^ (-(3 / 2) + ε) All goals completed! 🐙end Erdos1190