Erdős problem 1026
For a sequence of distinct reals, determine the largest constant such that some monotonic subsequence always has sum exceeding times the total sum. Resolved as .
Sources
FormalConjectures/ErdosProblems/
1026.lean
Retained formal statement
Hanani [Ha57] showed that every sequence is the disjoint union of at most many monotonic subsequences.
∀ (ε : ℝ), 0 < ε → ∀ᶠ (n : ℕ) in Filter.atTop, ∀ (x : Fin n → ℝ), Function.Injective x → ∃ m I, (∀ (j : Fin m), MonotoneOn x ↑(I j) ∨ AntitoneOn x ↑(I j)) ∧ (Pairwise fun j k => Disjoint (I j) (I k)) ∧ Finset.univ.biUnion I = Finset.univ ∧ ↑m ≤ (√2 + ε) * √↑nSolvedStatement only, no proof