All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Dist strict Mono

Grid.dist_strictMono

Plain-language statement

If one grid cube II is strictly contained below another grid cube JJ, then the project’s phase distance at the finer cube is controlled by the phase distance at the coarser cube:

dI(f,g)C(a)dJ(f,g).d_I(f,g)\le C(a)\,d_J(f,g).

Exact Lean statement

lemma dist_strictMono {I J : Grid X} (hpq : I < J) {f g : Θ X} :
    dist_{I} f g ≤ C2_1_2 a * dist_{J} f g

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma dist_strictMono {I J : Grid X} (hpq : I < J) {f g : Θ X} :    dist_{I} f g  C2_1_2 a * dist_{J} f g := by  calc    _  dist_{c I, 4 * D ^ s I} f g :=      cdist_mono (ball_subset_ball (by simp_rw [div_eq_inv_mul, defaultD]; gcongr; norm_num))    _  2 ^ (-𝕔 * (a : )) * dist_{c I, 4 * D ^ (s I + 1)} f g := by      rw [ div_le_iff₀' (by positivity), neg_mul, Real.rpow_neg zero_le_two, div_inv_eq_mul, mul_comm]      convert! le_cdist_iterate (x := c I) (r := 4 * D ^ s I) (by positivity) f g (𝕔 * a) using 1      · norm_cast      · apply dist_congr rfl        have : (defaultA a : ) ^ (𝕔 * a) = D := by          simp only [defaultD, Nat.cast_pow, Nat.cast_ofNat]          rw [ pow_mul]; congr 1; ring        rw [this, zpow_add_one₀ (realD_pos a).ne']; ring    _  2 ^ (-𝕔 * (a : )) * dist_{c I, 4 * D ^ s J} f g := by      gcongr      have : s I < s J := (Grid.lt_def.mp hpq).2      apply cdist_mono      gcongr      · exact one_le_realD _      · lia    _  2 ^ (-𝕔 * (a : )) * dist_{c J, 8 * D ^ s J} f g := by      gcongr      have : c I  ball (c J) (4 * D ^ s J) :=        mem_of_mem_of_subset c_mem_Grid ((Grid.lt_def.mp hpq).1.trans Grid_subset_ball)      rw [mem_ball] at this      exact cdist_mono (ball_subset_ball' (by linarith))    _  2 ^ (-𝕔 * (a : ) + 5 * a) * dist_{J} f g := by      rw [Real.rpow_add zero_lt_two, mul_assoc]      gcongr      rw [show (2 : ) ^ (5 * (a : )) = (defaultA a) ^ 5 by norm_cast; ring]      convert! cdist_le_iterate _ f g 5 using 1      · exact dist_congr rfl (by ring)      · have := one_le_realD a; positivity    _ = _ := by congr 1; rw [C2_1_2,  add_mul]
Project
Carleson formalization
License
Apache-2.0
Commit
74ef907d6bdb
Source
Carleson/GridStructure.lean:397-431

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