We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8038838 commit cac627bCopy full SHA for cac627b
src/Algebra/Definitions.agda
@@ -50,6 +50,7 @@ Associative _∙_ = ∀ x y z → ((x ∙ y) ∙ z) ≈ (x ∙ (y ∙ z))
50
Commutative : Op₂ A → Set _
51
Commutative _∙_ = ∀ x y → (x ∙ y) ≈ (y ∙ x)
52
53
+-- An element is called `Central` for a binary operation if it commutes with all other elements.
54
Central : Op₂ A → A → Set _
55
Central _∙_ x = ∀ y → (x ∙ y) ≈ (y ∙ x)
56
0 commit comments