We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 032b054 commit 5e83c4fCopy full SHA for 5e83c4f
1 file changed
Mathlib/Order/Closure.lean
@@ -237,6 +237,12 @@ section SemilatticeSup
237
238
variable [SemilatticeSup α] (c : ClosureOperator α)
239
240
+theorem sup_closure_le (x y : α) : x ⊔ c y ≤ c (x ⊔ y) :=
241
+ sup_le (le_sup_left.trans (c.le_closure _)) (c.monotone le_sup_right)
242
+
243
+theorem closure_sup_le (x y : α) : c x ⊔ y ≤ c (x ⊔ y) :=
244
+ sup_le (c.monotone le_sup_left) (le_sup_right.trans (c.le_closure _))
245
246
theorem closure_sup_closure_le (x y : α) : c x ⊔ c y ≤ c (x ⊔ y) :=
247
c.monotone.le_map_sup _ _
248
0 commit comments