Skip to content

Commit 8eb1ca9

Browse files
committed
text and fixes
1 parent 8701330 commit 8eb1ca9

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

Mathlib/Order/ConditionallyCompleteLattice/Indexed.lean

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff 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 -/]
141140
theorem 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 -/
204199
theorem ciInf_le {f : ι → α} (H : BddBelow (range f)) (c : ι) : iInf f ≤ f c :=
205200
le_ciSup (α := αᵒᵈ) H c

0 commit comments

Comments
 (0)