Files
agdaproofs/Groups/SymmetricGroups/Finite/Definition.agda
2019-12-07 13:00:18 +00:00

32 lines
928 B
Agda
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{-# OPTIONS --safe --warning=error --without-K #-}
open import LogicalFormulae
open import Setoids.Setoids
open import Functions
open import Agda.Primitive using (Level; lzero; lsuc; _⊔_)
open import Numbers.Naturals.Semiring
open import Sets.FinSet
open import Groups.Groups
open import Groups.Definition
open import Sets.EquivalenceRelations
open import Setoids.Functions.Extension
open import Groups.SymmetricGroups.Definition
module Groups.SymmetricGroups.Finite.Definition where
snSet : (n : ) Set
snSet n = SymmetryGroupElements (reflSetoid (FinSet n))
snSetoid : (n : ) Setoid (snSet n)
snSetoid n = symmetricSetoid (reflSetoid (FinSet n))
SymmetricGroupN : (n : ) Group (snSetoid n) (symmetricGroupOp)
SymmetricGroupN n = symmetricGroup (reflSetoid (FinSet n))
record Cycles {n : } (s : snSet n) : Set where
field
cycles : {n : } (s : snSet n) Cycles s
cycles s = {!!}