-
Notifications
You must be signed in to change notification settings - Fork 91
Semigroups of real numbers under the min/max operators #1631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
418af10
f91436d
4c47515
f3f8534
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,6 +19,9 @@ open import foundation.logical-equivalences | |
| open import foundation.transport-along-identifications | ||
| open import foundation.universe-levels | ||
|
|
||
| open import group-theory.large-semigroups | ||
| open import group-theory.semigroups | ||
|
|
||
| open import order-theory.greatest-lower-bounds-large-posets | ||
| open import order-theory.large-meet-semilattices | ||
| open import order-theory.meet-semilattices | ||
|
|
@@ -132,6 +135,78 @@ module _ | |
| ( is-greatest-binary-lower-bound-min-ℝ x y)) | ||
| ``` | ||
|
|
||
| ### The binary minimum is associative | ||
|
|
||
| ```agda | ||
| module _ | ||
| {l1 l2 l3 : Level} | ||
| (x : ℝ l1) (y : ℝ l2) (z : ℝ l3) | ||
| where | ||
|
|
||
| abstract | ||
| associative-min-ℝ : min-ℝ (min-ℝ x y) z = min-ℝ x (min-ℝ y z) | ||
| associative-min-ℝ = | ||
| antisymmetric-leq-ℝ | ||
| ( min-ℝ (min-ℝ x y) z) | ||
| ( min-ℝ x (min-ℝ y z)) | ||
|
Comment on lines
+147
to
+151
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment here. this is true by the same proof that you write in all large posets with joins. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As a corollary, any large poset has an associated large semigroup under |
||
| ( leq-min-leq-leq-ℝ | ||
| ( x) | ||
| ( min-ℝ y z) | ||
| ( min-ℝ (min-ℝ x y) z) | ||
| ( transitive-leq-ℝ | ||
| ( min-ℝ (min-ℝ x y) z) | ||
| ( min-ℝ x y) | ||
| ( x) | ||
| ( leq-left-min-ℝ x y) | ||
| ( leq-left-min-ℝ (min-ℝ x y) z)) | ||
| ( leq-min-leq-leq-ℝ | ||
| ( y) | ||
| ( z) | ||
| ( min-ℝ ( min-ℝ x y) z) | ||
| ( transitive-leq-ℝ | ||
| ( min-ℝ (min-ℝ x y) z) | ||
| ( min-ℝ x y) | ||
| ( y) | ||
| ( leq-right-min-ℝ x y) | ||
| ( leq-left-min-ℝ (min-ℝ x y) z)) | ||
| ( leq-right-min-ℝ (min-ℝ x y) z))) | ||
| ( leq-min-leq-leq-ℝ | ||
| ( min-ℝ x y) | ||
| ( z) | ||
| ( min-ℝ x (min-ℝ y z)) | ||
| ( leq-min-leq-leq-ℝ | ||
| ( x) | ||
| ( y) | ||
| ( min-ℝ x (min-ℝ y z)) | ||
| ( leq-left-min-ℝ x (min-ℝ y z)) | ||
| ( transitive-leq-ℝ | ||
| ( min-ℝ x (min-ℝ y z)) | ||
| ( min-ℝ y z) | ||
| ( y) | ||
| ( leq-left-min-ℝ y z) | ||
| ( leq-right-min-ℝ x (min-ℝ y z)))) | ||
| ( transitive-leq-ℝ | ||
| ( min-ℝ x (min-ℝ y z)) | ||
| ( min-ℝ y z) | ||
| ( z) | ||
| ( leq-right-min-ℝ y z) | ||
| ( leq-right-min-ℝ x (min-ℝ y z)))) | ||
| ``` | ||
|
|
||
| ### The large semigroup of real numbers under the minimum operator | ||
|
|
||
| ```agda | ||
| large-semigroup-min-ℝ : Large-Semigroup lsuc | ||
| large-semigroup-min-ℝ = make-Large-Semigroup ℝ-Set min-ℝ associative-min-ℝ | ||
| ``` | ||
|
|
||
| ### The semigroup of real numbers under the minimum operator at a given level | ||
|
|
||
| ```agda | ||
| semigroup-min-ℝ : (l : Level) → Semigroup (lsuc l) | ||
| semigroup-min-ℝ = semigroup-Large-Semigroup large-semigroup-min-ℝ | ||
| ``` | ||
|
|
||
| ### The large poset of real numbers has meets | ||
|
|
||
| ```agda | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is true in any large poset with meets, by the same argument as you demonstrate. Would you be willing to prove it in that generality, if it is not already?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a corollary, any large poset has an associated large semigroup under
max.