Plain-language statement
There is a measurable exceptional set with such that every measurable bounded by satisfies
Exact Lean statement
theorem discrete_carleson :
∃ G', MeasurableSet G' ∧ 2 * volume G' ≤ volume G ∧
∀ f : X → ℂ, Measurable f → (∀ x, ‖f x‖ ≤ F.indicator 1 x) →
∫⁻ x in G \ G', ‖carlesonSum univ f x‖ₑ ≤
C2_0_2 a nnq * volume G ^ (1 - q⁻¹) * volume F ^ q⁻¹Formal artifact
Lean source
theorem discrete_carleson : ∃ G', MeasurableSet G' ∧ 2 * volume G' ≤ volume G ∧ ∀ f : X → ℂ, Measurable f → (∀ x, ‖f x‖ ≤ F.indicator 1 x) → ∫⁻ x in G \ G', ‖carlesonSum univ f x‖ₑ ≤ C2_0_2 a nnq * volume G ^ (1 - q⁻¹) * volume F ^ q⁻¹ := by have exc := exceptional_set (X := X) rw [zpow_neg_one, ← ENNReal.div_eq_inv_mul] at exc use G', measurable_G', ENNReal.mul_le_of_le_div' exc; intro f measf hf classical calc _ ≤ ∫⁻ x in G \ G', ‖carlesonSum 𝔓₁ f x‖ₑ + ‖carlesonSum 𝔓₁ᶜ f x‖ₑ := by refine setLIntegral_mono (by fun_prop) fun x _ ↦ ?_ rw [carlesonSum, ← Finset.sum_filter_add_sum_filter_not _ (· ∈ 𝔓₁ (X := X))] simp_rw [Finset.filter_filter, mem_univ, true_and, carlesonSum, mem_compl_iff] apply enorm_add_le _ = (∫⁻ x in G \ G', ‖carlesonSum 𝔓₁ f x‖ₑ) + ∫⁻ x in G \ G', ‖carlesonSum 𝔓₁ᶜ f x‖ₑ := lintegral_add_left (by fun_prop) _ _ ≤ C5_1_2 a nnq * volume G ^ (1 - q⁻¹) * volume F ^ q⁻¹ + C5_1_3 a nnq * volume G ^ (1 - q⁻¹) * volume F ^ q⁻¹ := add_le_add (forest_union hf measf) (forest_complement hf measf) _ ≤ _ := by simp_rw [mul_assoc, ← add_mul] gcongr norm_cast apply le_C2_0_2 (four_le_a X) (q_mem_Ioc X)- Project
- Carleson formalization
- License
- Apache-2.0
- Commit
- 74ef907d6bdb
- Source
- Carleson/Discrete/MainTheorem.lean:44-68
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.