Plain-language statement
Let be a forest at level , let be measurable, and let be measurable with . The integral over of the norm of the total forest Carleson sum is bounded by
Exact Lean statement
theorem forest_operator' {n : ℕ} (𝔉 : Forest X n) {f : X → ℂ} {A : Set X}
(hf : Measurable f) (h2f : ∀ x, ‖f x‖ ≤ F.indicator 1 x) (hA : MeasurableSet A) (sA : A ⊆ G) :
∫⁻ x in A, ‖∑ u with u ∈ 𝔉, carlesonSum (𝔉 u) f x‖ₑ ≤
C2_0_4 a q n * (dens₂ (⋃ u ∈ 𝔉, 𝔉 u)) ^ (q⁻¹ - 2⁻¹) *
eLpNorm f 2 volume * (volume A) ^ (1/2 : ℝ)Formal artifact
Lean source
theorem forest_operator' {n : ℕ} (𝔉 : Forest X n) {f : X → ℂ} {A : Set X} (hf : Measurable f) (h2f : ∀ x, ‖f x‖ ≤ F.indicator 1 x) (hA : MeasurableSet A) (sA : A ⊆ G) : ∫⁻ x in A, ‖∑ u with u ∈ 𝔉, carlesonSum (𝔉 u) f x‖ₑ ≤ C2_0_4 a q n * (dens₂ (⋃ u ∈ 𝔉, 𝔉 u)) ^ (q⁻¹ - 2⁻¹) * eLpNorm f 2 volume * (volume A) ^ (1/2 : ℝ) := by /- 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 h2f rw [← enorm_integral_starRingEnd_mul_eq_lintegral_enorm]; swap · exact (BoundedCompactSupport.finset_sum (fun i hi ↦ by fun_prop)).integrable rw [← integral_indicator hA] simp_rw [indicator_mul_left, ← comp_def, Set.indicator_comp_of_zero (g := starRingEnd ℂ) (by simp)] have bAi (x : X) : ‖A.indicator (fun y ↦ (∑ u with u ∈ 𝔉, carlesonSum (𝔉 u) f y) / ‖∑ u with u ∈ 𝔉, carlesonSum (𝔉 u) f y‖) x‖ ≤ A.indicator 1 x := by rw [norm_indicator_eq_indicator_norm]; apply indicator_le_indicator rw [Complex.norm_div, norm_real, norm_norm, Pi.one_apply] rcases eq_or_ne ‖∑ u with u ∈ 𝔉, carlesonSum (𝔉 u) f x‖ 0 with hnorm | hnorm · rw [hnorm]; norm_num · rw [div_self hnorm] apply (forest_operator 𝔉 hf h2f ?_ fun x ↦ ?_).trans; rotate_left · exact Measurable.indicator (by fun_prop) hA · exact (bAi _).trans (indicator_le_indicator_apply_of_subset sA (by simp)) gcongr · simp only [sub_nonneg, inv_le_inv₀ zero_lt_two (q_pos X)] exact (q_mem_Ioc (X := X)).2 · exact le_rfl calc _ ≤ eLpNorm (A.indicator (fun x ↦ 1) : X → ℝ) 2 volume := by apply eLpNorm_mono (fun x ↦ ?_) simp only [indicator, coe_algebraMap, Real.norm_eq_abs] split_ifs · simpa using div_self_le_one _ · simp _ ≤ _ := by rw [eLpNorm_indicator_const hA (by norm_num) (by norm_num)] simp- Project
- Carleson formalization
- License
- Apache-2.0
- Commit
- 74ef907d6bdb
- Source
- Carleson/ForestOperator/Forests.lean:1068-1104
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
Adjoint Carleson adjoint
adjointCarleson_adjoint
Plain-language statement
adjointCarleson is the adjoint of carlesonOn.
Source project: Carleson formalization
Person-level attribution pending.
Ae tendsto zero of distribution le
ae_tendsto_zero_of_distribution_le
Plain-language statement
Suppose that, for every error threshold and every measure tolerance , one can choose so that the set where exceeds has measure at most . Then converges to for almost every .
Source project: Carleson formalization
Person-level attribution pending.
Antichain operator
antichain_operator
Plain-language statement
For an antichain of pairwise incomparable tiles, and measurable functions and bounded by the indicators of and , the pairing of with the Carleson sum over is controlled by the norms of and and by positive powers of the two tile-density parameters. Concretely, the bound is
Source project: Carleson formalization
Person-level attribution pending.