Sheargroups
Content created by Egbert Rijke, Fredrik Bakke and Jonathan Prieto-Cubides.
Created on 2022-03-12.
Last modified on 2023-03-15.
module group-theory.sheargroups where
Imports
open import foundation.cartesian-product-types open import foundation.dependent-pair-types open import foundation.identity-types open import foundation.sets open import foundation.universe-levels
Definition
Sheargroup : (l : Level) → UU (lsuc l) Sheargroup l = Σ ( Set l) ( λ X → Σ ( type-Set X) ( λ e → Σ (type-Set X → type-Set X → type-Set X) ( λ m → ( (x : type-Set X) → Id (m e x) x) × ( ( (x : type-Set X) → Id (m x x) e) × ( (x y z : type-Set X) → Id (m x (m y z)) (m (m (m x (m y e)) e) z))))))
Recent changes
- 2023-03-15. Fredrik Bakke. Remove blank lines at the start and end of code blocks (#508).
- 2023-03-07. Fredrik Bakke. Add blank lines between
<details>
tags and markdown syntax (#490). - 2023-03-07. Jonathan Prieto-Cubides. Show module declarations (#488).
- 2023-03-06. Fredrik Bakke. Remove redundant whitespace in headers (#486).
- 2023-03-05. Jonathan Prieto-Cubides. Add “suggest an edit” button and minor fix (#484).