Conditionally Complete Lattice le bi Sup
ConditionallyCompleteLattice.le_biSup
Plain-language statement
In a conditionally complete linear order, suppose the values for are bounded above. If one of those values is exactly , then is at most the supremum .
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 iFormal artifact
Lean source
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
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.