/- Copyright 2025 The Formal Conjectures Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -/ import FormalConjecturesUtil

Erdős Problem 996

Reference:

    erdosproblems.com/996

    [Er49d] Erdös, P. "On the strong law of large numbers." Transactions of the American Mathematical Society 67.1 (1949): 51-56.

    [Ma66] Matsuyama, Noboru. "On the strong law of large numbers." Tohoku Mathematical Journal, Second Series 18.3 (1966): 259-269.

open MeasureTheory AddCircle Filter Topology Asymptotics Finset Real namespace Erdos996 noncomputable def fourierPartial {T : } [hT : Fact (0 < T)] (f : Lp 2 (@haarAddCircle T hT)) (k : ) : AddCircle T := fun x => i Icc (-k : ) k, fourierCoeff f k fourier i x

Does there exists a positive constant C such that for all f ∈ L²[0,1] and all lacunary sequences n, if ‖f - fₖ‖₂ = O(1 / log log log k ^ C), then for almost every x, lim ∑ k ∈ Finset.range N, f (n k • x)) / N = ∫ t, f t ∂t?

@[category research open, AMS 42] theorem declaration uses 'sorry'erdos_996 : answer(sorry) (C : ), 0 < C (f : Lp 2 (haarAddCircle (T := 1))) (n : ), IsLacunary n (fun k => (eLpNorm (fourierPartial f k) 2 (haarAddCircle (T := 1))).toReal) =O[atTop] (fun k => 1 / (log (log (log k))) ^ C) ∀ᵐ x, Tendsto (fun N => ( k .range N, f (n k x)) / N) atTop (𝓝 ( t, f t haarAddCircle)) := True C, 0 < C (f : (Lp 2 haarAddCircle)) (n : ), IsLacunary n ((fun k => (eLpNorm (fourierPartial f k) 2 haarAddCircle).toReal) =O[atTop] fun k => 1 / log (log (log k)) ^ C) ∀ᵐ (x : AddCircle 1), Tendsto (fun N => (∑ k range N, f (n k x)) / N) atTop (𝓝 ( (t : AddCircle 1), f t haarAddCircle)) All goals completed! 🐙

The following theorem is proved in [Ma66].

@[category research solved, AMS 42] theorem declaration uses 'sorry'erdos_996.variants.log2 : (C : ), 0.5 < C (f : Lp 2 (haarAddCircle (T := 1))) (n : ), IsLacunary n (fun k => (eLpNorm (fourierPartial f k) 2 (haarAddCircle (T := 1))).toReal) =O[atTop] (fun k => 1 / (log (log k)) ^ C) ∀ᵐ x, Tendsto (fun N => ( k .range N, f (n k x)) / N) atTop (𝓝 ( t, f t haarAddCircle)) := (C : ), 0.5 < C (f : (Lp 2 haarAddCircle)) (n : ), IsLacunary n ((fun k => (eLpNorm (fourierPartial f k) 2 haarAddCircle).toReal) =O[atTop] fun k => 1 / log (log k) ^ C) ∀ᵐ (x : AddCircle 1), Tendsto (fun N => (∑ k range N, f (n k x)) / N) atTop (𝓝 ( (t : AddCircle 1), f t haarAddCircle)) All goals completed! 🐙 end Erdos996