Skip to content

Commit 5e83c4f

Browse files
committed
closure: two lemmas
1 parent 032b054 commit 5e83c4f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Mathlib/Order/Closure.lean

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,12 @@ section SemilatticeSup
237237

238238
variable [SemilatticeSup α] (c : ClosureOperator α)
239239

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+
240246
theorem closure_sup_closure_le (x y : α) : c x ⊔ c y ≤ c (x ⊔ y) :=
241247
c.monotone.le_map_sup _ _
242248

0 commit comments

Comments
 (0)