All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Finitary carleson

finitary_carleson

Plain-language statement

There is a measurable exceptional set GGG' \subseteq G with 2μ(G)μ(G)2\mu(G') \le \mu(G) such that, for every measurable ff bounded by 1F\mathbf{1}_F, the integral over GGG \setminus G' of the finitary oscillatory singular integral, summed only over the scales from σ1(x)\sigma_1(x) to σ2(x)\sigma_2(x), is at most C(a,q)μ(G)11/qμ(F)1/qC(a,q)\mu(G)^{1-1/q}\mu(F)^{1/q}.

Exact Lean statement

theorem finitary_carleson : ∃ G', MeasurableSet G' ∧ 2 * volume G' ≤ volume G ∧
    ∀ f : X → ℂ, Measurable f → (∀ x, ‖f x‖ ≤ F.indicator 1 x) →
    ∫⁻ x in G \ G', ‖∑ s ∈ Icc (σ₁ x) (σ₂ x), ∫ y, Ks s x y * f y * exp (I * Q x y)‖ₑ ≤
    C2_0_1 a nnq * (volume G) ^ (1 - q⁻¹) * (volume F) ^ q⁻¹

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem finitary_carleson :  G', MeasurableSet G'  2 * volume G'  volume G      f : X  ℂ, Measurable f  ( x, ‖f x‖  F.indicator 1 x)     ∫⁻ x in G \ G', ‖∑ s  Icc (σ₁ x) (σ₂ x), ∫ y, Ks s x y * f y * exp (I * Q x y)‖ₑ     C2_0_1 a nnq * (volume G) ^ (1 - q⁻¹) * (volume F) ^ q⁻¹ := by  have g : GridStructure X D κ S o := grid_existence X  have t : TileStructure Q D κ S o := tile_existence X  clear g  rcases discrete_carleson X with G', hG', h2G', hfG'  refine G', hG', h2G', fun f meas_f h2f  le_of_eq_of_le ?_ (hfG' f meas_f h2f)  refine setLIntegral_congr_fun (measurableSet_G.diff hG') fun x hx  ?_  simp_rw [carlesonSum, mem_univ, Finset.filter_true, tile_sum_operator hx, mul_sub, exp_sub,    mul_div, div_eq_mul_inv,     smul_eq_mul, integral_smul_const,  Finset.sum_smul, _root_.enorm_smul]  suffices ‖(cexp (I • ((Q x) x : ℂ)))⁻¹‖ₑ = 1 by rw [this, mul_one]  simp [mul_comm I, enorm_eq_nnnorm]
Project
Carleson formalization
License
Apache-2.0
Commit
74ef907d6bdb
Source
Carleson/FinitaryCarleson.lean:110-124

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