All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Antichain operator

antichain_operator'

Plain-language statement

For an antichain A\mathfrak A, a measurable set AGA\subseteq G, and measurable ff bounded by 1F\mathbf 1_F, the norm of the Carleson sum has the integral estimate

A+CarlesonSumAf(x)dxC(a,q)dens1(A)(q1)/(8a4)dens2(A)1/q1/2f2μ(G)1/2.\int_A^+\lVert\operatorname{CarlesonSum}_{\mathfrak A}f(x)\rVert\,dx\le 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\,\mu(G)^{1/2}.

Exact Lean statement

theorem antichain_operator' {A : Set X} (h𝔄 : IsAntichain (· ≤ ·) 𝔄)
    (hf : Measurable f) (hfF : ∀ x, ‖f x‖ ≤ F.indicator 1 x) (hA : A ⊆ G) :
    ∫⁻ x in A, ‖carlesonSum 𝔄 f x‖ₑ ≤
    C2_0_3 a nnq * dens₁ 𝔄 ^ ((q - 1) / (8 * a ^ 4)) * dens₂ 𝔄 ^ (q⁻¹ - 2⁻¹) *
    eLpNorm f 2 volume * volume G ^ (1/2 : ℝ)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem antichain_operator' {A : Set X} (h𝔄 : IsAntichain (·  ·) 𝔄)    (hf : Measurable f) (hfF :  x, ‖f x‖  F.indicator 1 x) (hA : A  G) :    ∫⁻ x in A, ‖carlesonSum 𝔄 f x‖ₑ     C2_0_3 a nnq * dens₁ 𝔄 ^ ((q - 1) / (8 * a ^ 4)) * dens₂ 𝔄 ^ (q⁻¹ - 2⁻¹) *    eLpNorm f 2 volume * volume G ^ (1/2 : ) := by  have I (x : ) : x / x  1 := by    rcases eq_or_ne x 0 with rfl | hx    · simp    · simp [hx]  apply (lintegral_mono_set hA).trans  /- This follows from the other version by taking for the test function `g` the argument of  the sum to be controlled. -/  have bf := bcs_of_measurable_of_le_indicator_f hf hfF  rw [ enorm_integral_starRingEnd_mul_eq_lintegral_enorm bf.carlesonSum.restrict.integrable]  rw [ integral_indicator measurableSet_G]  simp_rw [indicator_mul_left,  Function.comp_def,    Set.indicator_comp_of_zero (g := starRingEnd ℂ) (by simp)]  apply (antichain_operator h𝔄 hf hfF    (((measurable_carlesonSum hf).div (measurable_ofReal.comp (measurable_carlesonSum hf).norm)      ).indicator measurableSet_G)    (fun _  by simp [indicator]; split_ifs <;> simp [I])).trans  gcongr  calc  _  eLpNorm (G.indicator (fun x  1) : X  ) 2 volume :=    eLpNorm_mono (fun x  by simp only [indicator]; split_ifs <;> simp [I])  _  _ := by    rw [eLpNorm_indicator_const measurableSet_G (by norm_num) (by norm_num)]    simp
Project
Carleson formalization
License
Apache-2.0
Commit
74ef907d6bdb
Source
Carleson/Antichain/AntichainOperator.lean:432-459

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