Is Cancellative of norm integral exp le
isCancellative_of_norm_integral_exp_le
Plain-language statement
Suppose the compatible phase system satisfies the following oscillatory cancellation estimate on every ball : for every Lipschitz amplitude supported in the ball and every pair of phases ,
Then the metric phase space satisfies the project’s IsCancellative property with exponent .
Exact Lean statement
lemma isCancellative_of_norm_integral_exp_le (τ : ℝ) [CompatibleFunctions ℝ X A]
(h : ∀ {x : X} {r : ℝ} {φ : X → ℂ} (_hr : 0 < r) (_h1 : iLipENorm φ x r ≠ ∞)
(_h2 : support φ ⊆ ball x r) {f g : Θ X},
‖∫ x in ball x r, exp (I * (f x - g x)) * φ x‖ ≤
A * volume.real (ball x r) * iLipNNNorm φ x r * (1 + dist_{x, r} f g) ^ (-τ)) :
IsCancellative X τFormal artifact
Lean source
lemma isCancellative_of_norm_integral_exp_le (τ : ℝ) [CompatibleFunctions ℝ X A] (h : ∀ {x : X} {r : ℝ} {φ : X → ℂ} (_hr : 0 < r) (_h1 : iLipENorm φ x r ≠ ∞) (_h2 : support φ ⊆ ball x r) {f g : Θ X}, ‖∫ x in ball x r, exp (I * (f x - g x)) * φ x‖ ≤ A * volume.real (ball x r) * iLipNNNorm φ x r * (1 + dist_{x, r} f g) ^ (-τ)) : IsCancellative X τ := by constructor intro x r φ hr h1 h2 f g convert ENNReal.ofReal_le_ofReal (h (x := x) (r := r) (φ := φ) hr h1 h2 (f := f) (g := g)) · rw [ofReal_norm] congr 1 rw [setIntegral_eq_integral_of_forall_compl_eq_zero (fun y hy ↦ ?_)] have : φ y = 0 := by apply notMem_support.1 contrapose! hy exact h2 hy simp [this] · rw [ENNReal.ofReal_mul (by positivity), ENNReal.ofReal_mul (by positivity), ENNReal.ofReal_mul (by positivity)] congr · simp · simp only [Measure.real, ofReal_toReal measure_ball_ne_top] · simp [iLipNNNorm, coe_toNNReal h1] · rw [← ENNReal.ofReal_rpow_of_pos (by positivity)] congr rw [ENNReal.ofReal_add zero_le_one dist_nonneg] simp [edist_dist]- Project
- Carleson formalization
- License
- Apache-2.0
- Commit
- 74ef907d6bdb
- Source
- Carleson/DoublingMeasure.lean:262-288
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.