Erdős problem 275
If a finite system of congruences (the are not necessarily distinct) covers consecutive integers then it covers all integers.
Sources
FormalConjectures/ErdosProblems/
275.lean
Retained formal statement
If a finite system of congruences (the are not necessarily distinct) covers consecutive integers then it covers all integers.
This is best possible as the system shows. This was proved independently by Selfridge and Crittenden and Vanden Eynden [CrVE70].
This was formalized in Lean by Alexeev using Aristotle.
∀ (r : ℕ) (a : Fin r → ℤ) (n : Fin r → ℕ), (∃ k, ∀ x ∈ Set.Ico k (k + 2 ^ r), ∃ i, x ≡ a i [ZMOD ↑(n i)]) → ∀ (x : ℤ), ∃ i, x ≡ a i [ZMOD ↑(n i)]