Erdős problem 204
Are there such that there is a covering system with moduli the divisors of which is 'as disjoint as possible'?
Sources
FormalConjectures/ErdosProblems/
204.lean
Retained formal statement
Are there such that there is a covering system with moduli the divisors of which is 'as disjoint as possible'?
That is, for all with there is an associated such that every integer is congruent to some , and if there is some integer with then .
The density of such is zero. Erdős and Graham believed that no such exist.
Adenwalla [Ad25] has proved there are no such .
This was formalized by van Doorn in Lean using Aristotle.
False ↔ ∃ n a, have D := {d | d ∣ n ∧ d > 1}; (∀ (x : ℤ), ∃ d ∈ D, x ≡ a d [ZMOD ↑d]) ∧ ∀ d ∈ D, ∀ d' ∈ D, d ≠ d' → (∃ x, x ≡ a d [ZMOD ↑d] ∧ x ≡ a d' [ZMOD ↑d']) → d.gcd d' = 1