All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Measurable lco Convergent

measurable_lcoConvergent

Plain-language statement

For measurable ff with f(x)1\lVert f(x)\rVert\le1, the scale-nn quantity lcoConvergent, which records a supremum of truncated linearized Carleson integrals over rational radii, is a measurable function of xx.

Exact Lean statement

lemma measurable_lcoConvergent {n : ℕ} (mf : Measurable f) (nf : (‖f ·‖) ≤ 1) :
    Measurable (lcoConvergent K Q f n)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma measurable_lcoConvergent {n : } (mf : Measurable f) (nf : (‖f ·‖)  1) :    Measurable (lcoConvergent K Q f n) := by  refine measurable_of_Ioi fun c  ?_  let J : Set ( × ) := {p | (2 ^ n)⁻¹ < p.1  p.1 < p.2  p.2 < 2 ^ n}  suffices lcoConvergent K Q f n ⁻¹' Ioi c = ⋃ j  J, {x | c < ‖T_R K Q j.1 j.2 (2 ^ n) f x‖ₑ} by    rw [this]; refine MeasurableSet.biUnion J.to_countable fun j mj  ?_    exact measurableSet_lt measurable_const      ((measurable_carlesonOperatorIntegrand mf).indicator measurableSet_ball).enorm  ext x  simp_rw [mem_preimage, mem_Ioi, lcoConvergent, lt_biSup_iff, mem_iUnion₂, mem_setOf_eq,    exists_prop]  constructor <;> intro h  · obtain R₁, mR₁, R₂, mR₂, hR := h; unfold T_R at hR     by_cases mx : x  Metric.ball (cancelPt X) (2 ^ n); swap    · simp [indicator_of_notMem mx] at hR    simp_rw [indicator_of_mem mx] at hR     lift c to 0 using hR.ne_top    simp_rw [coe_lt_enorm,  NNReal.coe_lt_coe, coe_nnnorm] at hR     let ε := ‖carlesonOperatorIntegrand K (Q x) R₁ R₂ f x‖ - c    have εpos : 0 < ε := by linarith only [hR]    have hR₁ : 0 < R₁ := lt_of_le_of_lt (by positivity) mR₁.1    have hR₂ : R₁ < R₂ := mR₂.1    obtain q₁, q₂, lq₁, lq, lq₂, dq :=      exists_rat_near_carlesonOperatorIntegrand (Q x) x mf nf hR₁ hR₂ εpos    have qmJ : (q₁, q₂)  J := by      refine ?_, Rat.cast_lt.mp lq, ?_      · simp_rw [ Rat.cast_lt (K := ), Rat.cast_inv, Rat.cast_pow, Rat.cast_ofNat]        exact mR₁.1.trans lq₁      · simp_rw [ Rat.cast_lt (K := ), Rat.cast_pow, Rat.cast_ofNat]        exact lq₂.trans mR₂.2    use (q₁, q₂), qmJ    simp_rw [ε, lt_sub_comm, dist_eq_norm'] at dq; apply dq.trans_le    rw [sub_le_comm]; exact norm_sub_norm_le ..  · obtain ⟨⟨R₁, R₂, bR₁, bR₂, bR₃, hR := h; dsimp only at hR    simp_rw [ Rat.cast_lt (K := ), Rat.cast_inv, Rat.cast_pow, Rat.cast_ofNat] at bR₁ bR₂ bR₃    use R₁, bR₁, bR₂.trans bR₃, R₂, bR₂, bR₃
Project
Carleson formalization
License
Apache-2.0
Commit
74ef907d6bdb
Source
Carleson/MetricCarleson/Linearized.lean:71-106

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.32.0

Ae tendsto zero of distribution le

ae_tendsto_zero_of_distribution_le

Plain-language statement

Suppose that, for every error threshold δ>0\delta>0 and every measure tolerance ε>0\varepsilon>0, one can choose N0N_0 so that the set where supN>N0f(x)FN(x)\sup_{N>N_0}\lVert f(x)-F_N(x)\rVert exceeds δ\delta has measure at most ε\varepsilon. Then FN(x)F_N(x) converges to f(x)f(x) for almost every xx.

harmonic analysisFourier analysismeasure theory

Source project: Carleson formalization

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Antichain operator

antichain_operator

Plain-language statement

For an antichain A\mathfrak{A} of pairwise incomparable tiles, and measurable functions ff and gg bounded by the indicators of FF and GG, the pairing of gg with the Carleson sum over A\mathfrak{A} is controlled by the L2L^2 norms of ff and gg and by positive powers of the two tile-density parameters. Concretely, the bound is

C(a,q)dens1(A)(q1)/(8a4)dens2(A)1/q1/2f2g2.C(a,q)\,\mathrm{dens}_1(\mathfrak{A})^{(q-1)/(8a^4)}\,\mathrm{dens}_2(\mathfrak{A})^{1/q-1/2}\,\lVert f\rVert_2\lVert g\rVert_2.

harmonic analysisFourier analysismeasure theory

Source project: Carleson formalization

Person-level attribution pending.

View proof record