All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Conditionally Complete Lattice le bi Sup

ConditionallyCompleteLattice.le_biSup

Plain-language statement

In a conditionally complete linear order, suppose the values f(i)f(i) for isi\in s are bounded above. If one of those values is exactly aa, then aa is at most the supremum supisf(i)\sup_{i\in s} f(i).

Exact Lean statement

lemma ConditionallyCompleteLattice.le_biSup {α : Type*} [ConditionallyCompleteLinearOrder α]
    {ι : Type*} {f : ι → α} {s : Set ι} {a : α} (hfs : BddAbove (f '' s)) (ha : ∃ i ∈ s, f i = a) :
    a ≤ ⨆ i ∈ s, f i

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma ConditionallyCompleteLattice.le_biSup {α : Type*} [ConditionallyCompleteLinearOrder α]    {ι : Type*} {f : ι  α} {s : Set ι} {a : α} (hfs : BddAbove (f '' s)) (ha :  i  s, f i = a) :    a  ⨆ i  s, f i := by  apply le_csSup  · --TODO: improve this    rw [bddAbove_def] at *    rcases hfs with x, hx    use (max x (sSup ∅))    intro y hy    simp only [Set.mem_range] at hy    rcases hy with z, hz    rw [iSup] at hz    by_cases h : z  s    · have : (@Set.range α (z  s) fun _  f z) = {f z} := by        rw [Set.eq_singleton_iff_unique_mem]        exact Set.mem_range_self h, fun x hx  hx.2.symm      rw [this, csSup_singleton _] at hz      have : f z  x := by        simp only [Set.mem_image, forall_exists_index, and_imp, forall_apply_eq_imp_iff₂] at hx        exact hx z h      rw [hz] at this      exact le_max_of_le_left this    have : (@Set.range α (z  s) fun _  f z) =:= by simpa    rw [this] at hz    exact hz ▸ le_max_right x y  rw [Set.mem_range]  rcases ha with i, hi, fia  use i  rw [iSup]  convert csSup_singleton _  rw [Set.eq_singleton_iff_unique_mem]  refine ⟨⟨hi, fia, fun x hx  ?_  simp only [Set.mem_range, exists_prop] at hx  rwa [hx.2] at fia
Project
Carleson formalization
License
Apache-2.0
Commit
74ef907d6bdb
Source
Carleson/Classical/Helper.lean:46-79

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