Orbits of group actions
Content created by Fredrik Bakke, Jonathan Prieto-Cubides and Egbert Rijke.
Created on 2022-03-17.
Last modified on 2023-11-24.
module group-theory.orbits-group-actions where
Imports
open import foundation.dependent-pair-types open import foundation.identity-types open import foundation.universe-levels open import group-theory.group-actions open import group-theory.groups
Idea
The groupoid of orbits of a
group action consists of elements of X
, and a
morphism from x
to y
is given by an element g
of the
group G
such that gx = y
.
Definition
module _ {l1 l2 : Level} (G : Group l1) (X : action-Group G l2) where hom-orbit-action-Group : (x y : type-action-Group G X) → UU (l1 ⊔ l2) hom-orbit-action-Group x y = Σ (type-Group G) (λ g → mul-action-Group G X g x = y)
Recent changes
- 2023-11-24. Egbert Rijke. Abelianization (#877).
- 2023-03-13. Jonathan Prieto-Cubides. More maintenance (#506).
- 2023-03-10. Fredrik Bakke. Additions to
fix-import
(#497). - 2023-03-09. Jonathan Prieto-Cubides. Add hooks (#495).
- 2023-03-07. Fredrik Bakke. Add blank lines between
<details>
tags and markdown syntax (#490).