Erdős problem 1121
If are circles in with radii such that no line disjoint from all the circles divides them into two non-empty sets then the circles can be covered by a circle of radius .
Sources
FormalConjectures/ErdosProblems/
1121.lean
Retained formal statement
If are circles in with radii such that no line disjoint from all the circles divides them into two non-empty sets then the circles can be covered by a circle of radius .
This is true, and was proved by Goodman and Goodman [GoGo45] (whose proof also generalises to higher dimensions). A generalisation to convex bodies was proved by Hadwiger [Ha47].
An alternative proof is given by Bezdek and Litvak [BeLi16].
∀ {n : ℕ} (c : Fin n → EuclideanSpace ℝ (Fin 2)) (r : Fin n → ℝ), (∀ (i : Fin n), 0 < r i) → (∀ (v : EuclideanSpace ℝ (Fin 2)) (t : ℝ), v ≠ 0 → (∀ (i : Fin n), ∀ p ∈ Metric.closedBall (c i) (r i), inner ℝ v p ≠ t) → (∀ (i : Fin n), inner ℝ v (c i) < t) ∨ ∀ (i : Fin n), t < inner ℝ v (c i)) → ∃ z, ⋃ i, Metric.closedBall (c i) (r i) ⊆ Metric.closedBall z (∑ i, r i)