File tree Expand file tree Collapse file tree
Mathlib/Order/ConditionallyCompleteLattice Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -136,8 +136,7 @@ theorem IsGLB.ciInf_set_eq {s : Set β} {f : β → α} (H : IsGLB (f '' s) a) (
136136 IsGLB.csInf_eq (image_eq_range f s ▸ H) (image_eq_range f s ▸ Hne.image f)
137137
138138/-- The indexed supremum of a function is bounded above by a uniform bound -/
139- @ [to_dual le_ciInf /-- The indexed minimum of a function is bounded below by a uniform
140- lower bound -/ ]
139+ @ [to_dual le_ciInf /-- The indexed infimum of a function is bounded below by a uniform bound -/ ]
141140theorem ciSup_le [Nonempty ι] {f : ι → α} {c : α} (H : ∀ x, f x ≤ c) : iSup f ≤ c :=
142141 csSup_le (range_nonempty f) (by rwa [forall_mem_range])
143142
@@ -196,10 +195,6 @@ theorem ciInf_inf_eq {f g : ι → α} (Hf : BddBelow <| range f) (Hg : BddBelow
196195 ⨅ x, f x ⊓ g x = (⨅ x, f x) ⊓ (⨅ x, g x) :=
197196 ciSup_sup_eq (α := αᵒᵈ) Hf Hg
198197
199- /-- The indexed minimum of a function is bounded below by a uniform lower bound -/
200- theorem le_ciInf [Nonempty ι] {f : ι → α} {c : α} (H : ∀ x, c ≤ f x) : c ≤ iInf f :=
201- ciSup_le (α := αᵒᵈ) H
202-
203198/-- The indexed infimum of a function is bounded above by the value taken at one point -/
204199theorem ciInf_le {f : ι → α} (H : BddBelow (range f)) (c : ι) : iInf f ≤ f c :=
205200 le_ciSup (α := αᵒᵈ) H c
You can’t perform that action at this time.
0 commit comments