All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Tile sum operator

tile_sum_operator

Plain-language statement

For xGGx\in G\setminus G', summing the localized Carleson contribution over all tiles is exactly the same as summing the corresponding oscillatory kernel integral over the integer scales from σ1(x)\sigma_1(x) to σ2(x)\sigma_2(x). This is the identity that converts the discrete tile model back into the finitary operator.

Exact Lean statement

theorem tile_sum_operator {G' : Set X} {f : X → ℂ} {x : X} (hx : x ∈ G \ G') :
    ∑ (p : 𝔓 X), carlesonOn p f x =
    ∑ s ∈ Icc (σ₁ x) (σ₂ x), ∫ y, Ks s x y * f y * exp (I * (Q x y - Q x x))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem tile_sum_operator {G' : Set X} {f : X  ℂ} {x : X} (hx : x  G \ G') :    ∑ (p : 𝔓 X), carlesonOn p f x =    ∑ s  Icc (σ₁ x) (σ₂ x), ∫ y, Ks s x y * f y * exp (I * (Q x y - Q x x)) := by  classical  rw [𝔓_biUnion, Finset.sum_biUnion]; swap  · exact fun s _ s' _ hss' A hAs hAs' p pA  False.elim <| hss' (𝔰_eq (hAs pA) ▸ 𝔰_eq (hAs' pA))  rw [ (Icc (-S : ) S).toFinset.sum_filter_add_sum_filter_not (fun s  s  Icc (σ₁ x) (σ₂ x))]  rw [Finset.sum_eq_zero sum_eq_zero_of_notMem_Icc, add_zero]  refine Finset.sum_congr (Finset.ext fun s  fun hs  ?_, fun hs  ?_) (fun s hs  ?_)  · rw [Finset.mem_filter,  mem_toFinset] at hs    exact hs.2  · rw [mem_toFinset] at hs    rw [toFinset_Icc, Finset.mem_filter]    exact Finset.mem_Icc.2 (Icc_σ_subset_Icc_S hs), hs  · rcases exists_Grid hx.1 hs with I, Is, xI    obtain p, 𝓘pI, Qp :  (p : 𝔓 X), 𝓘 p = I  Q x  Ω p := by simpa using! biUnion_Ω x, rfl    have p𝔓Xs : p  𝔓X_s s := Finset.mem_filter.mpr Finset.mem_univ _, by rw [𝔰, 𝓘pI]; exact Is    have :  p'  𝔓X_s s, p'  p  carlesonOn p' f x = 0 := by      intro p' p'𝔓Xs p'p      apply indicator_of_notMem      simp only [E, mem_setOf_eq, not_and]      refine fun x_in_𝓘p' Qp'  False.elim ?_      have s_eq := 𝔰_eq p𝔓Xs ▸ 𝔰_eq p'𝔓Xs      have : ¬ Disjoint (𝓘 p' : Set X) (𝓘 p : Set X) := not_disjoint_iff.2 x, x_in_𝓘p', 𝓘pI ▸ xI      exact disjoint_left.1 (disjoint_Ω p'p <| Or.resolve_right (eq_or_disjoint s_eq) this) Qp' Qp    rw [Finset.sum_eq_single_of_mem p p𝔓Xs this]    have xEp : x  E p :=      𝓘pI ▸ xI, Qp, by simpa only [toFinset_Icc, Finset.mem_Icc, 𝔰_eq p𝔓Xs] using! hs    simp_rw [carlesonOn_def', indicator_of_mem xEp, 𝔰_eq p𝔓Xs]
Project
Carleson formalization
License
Apache-2.0
Commit
74ef907d6bdb
Source
Carleson/FinitaryCarleson.lean:70-98

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