Erdős problem 501
For every let be a bounded set of Lebesgue outer measure . Must there be an infinite independent set, that is an infinite with for all distinct ?
Sources
FormalConjectures/ErdosProblems/
501.lean
Retained formal statement
The constant family A x = ∅ satisfies all hypotheses of the main problem: each A x is bounded (the empty set is bounded) and has Lebesgue outer measure 0 < 1. Moreover, all of ℝ is an independent set, showing the conclusion holds trivially.
This demonstrates that the hypotheses are non-vacuous: the family A x = ∅ is a valid input to the theorem, and ℝ (which is infinite) witnesses the conclusion.
have A := fun x => ∅;(∀ (x : ℝ), Bornology.IsBounded (A x)) ∧ (∀ (x : ℝ), MeasureTheory.volume.toOuterMeasure (A x) < 1) ∧ ∃ X, X.Infinite ∧ X.Pairwise fun x y => x ∉ A yTestStatement only, no proof