module Algebra.Group.Concrete.Semidirect {β} where
Semidirect products of concrete groupsπ
The construction of the semidirect product for concrete groups is quite natural: given a concrete group and an action of on we simply define as the
pointed at
H : ConcreteGroup β H = Ο (pt G) Semidirect-concrete : ConcreteGroup β Semidirect-concrete .B .fst = Ξ£ β B G β Ξ» g β β B (Ο g) β Semidirect-concrete .B .snd = pt G , pt H
That this is a connected groupoid follows from standard results.
Semidirect-concrete .has-is-connected = is-connectedβis-connectedβ $ Ξ£-is-n-connected 2 (is-connectedββis-connected (G .has-is-connected)) (Ξ» a β is-connectedββis-connected (Ο a .has-is-connected)) Semidirect-concrete .has-is-groupoid = Ξ£-is-hlevel 3 (G .has-is-groupoid) (Ξ» a β Ο a .has-is-groupoid)
In order to relate this with the definition of semidirect products for abstract groups, we show that the fundamental group is the semidirect product
To that end, we start by defining the action of on induced by Given a loop we can apply the function to it to get a loop which we then turn into an automorphism.
Οβ-Ο : Action (Groups β) (ΟβB G) (ΟβB H) Οβ-Ο .hom p = pathβiso (ap (ΟβB β Ο) p) Οβ-Ο .preserves .pres-β p q = pathβiso (ap (ΟβB β Ο) (p β q)) β‘β¨ ap pathβiso (ap-β (ΟβB β Ο) p q) β©β‘ pathβiso (ap (ΟβB β Ο) p β ap (ΟβB β Ο) q) β‘β¨ pathβiso-β (Groups β) _ _ β©β‘ pathβiso (ap (ΟβB β Ο) p) βIso pathβiso (ap (ΟβB β Ο) q) β ΟβBGβΟβBH : Group β ΟβBGβΟβBH = Semidirect-product (ΟβB G) (ΟβB H) Οβ-Ο private module β = Group-on (ΟβBGβΟβBH .snd)
The following proof is adapted from Symmetry (2023, sec. 4.14).
The first step is to construct an equivalence between the underlying sets of and Since is a its loops consist of pairs where the second component is a dependent path over in the total space of What we actually want is a pair of non-dependent loops, so we need to βrealignβ the second component by transporting one of its endpoints along we do this by generalising on the endpoints and using path induction.
Note that we have a type a type family and a function given by The following constructions work in this general setting.
align : β {a a' : A} (p : a β‘ a') β PathP (Ξ» i β B (p i)) (f a) (f a') β (f a' β‘ f a') align {a} = J (Ξ» a' p β PathP (Ξ» i β B (p i)) (f a) (f a') β (f a' β‘ f a')) idβ align-refl : β {a : A} (q : f a β‘ f a) β align (Ξ» _ β a) # q β‘ q align-refl {a} = unext $ J-refl (Ξ» a' p β PathP (Ξ» i β B (p i)) (f a) (f a') β (f a' β‘ f a')) idβ Ξ£-align : β {a a' : A} β ((a , f a) β‘ (a' , f a')) β ((a β‘ a') Γ (f a' β‘ f a')) Ξ£-align = IsoβEquiv Ξ£-pathp-iso eβ»ΒΉ βe Ξ£-ap-snd align
It remains to show that this equivalence is a group homomorphism β or rather a groupoid homomorphism, since weβve generalised the endpoints. First, note that we can describe the action of on paths using a kind of dependent conjugation operation.
conjP : β {a a' : A} β (p : a β‘ a') β f a β‘ f a β f a' β‘ f a' conjP {a} p = transport (Ξ» i β f a β‘ f a β f (p i) β‘ f (p i)) Ξ» q β q conjP-refl : β {a : A} β (q : f a β‘ f a) β conjP refl q β‘ q conjP-refl {a} = unext $ transport-refl {A = f a β‘ f a β _} Ξ» q β q
Thus we have a composition operation on pairs of paths that generalises the multiplication in
_ββ_ : β {aβ aβ aβ : A} β (aβ β‘ aβ) Γ (f aβ β‘ f aβ) β (aβ β‘ aβ) Γ (f aβ β‘ f aβ) β (aβ β‘ aβ) Γ (f aβ β‘ f aβ) (p , q) ββ (p' , q') = p β p' , conjP p' q β q'
We can then show that Ξ£-align
preserves the
group(oid) operations by double path induction.
Ξ£-align-β
: β {aβ aβ aβ : A}
β (p : (aβ , f aβ) β‘ (aβ , f aβ))
β (p' : (aβ , f aβ) β‘ (aβ , f aβ))
β Ξ£-align # (p β p')
β‘ Ξ£-align # p ββ Ξ£-align # p'
Ξ£-align
preserves the
group(oid) operations by double path induction.Ξ£-align-β {aβ} {aβ} {aβ} p p' = Jβ (Ξ» aβ aβ pβ»ΒΉ p' β β (q : PathP (Ξ» i β B (pβ»ΒΉ (~ i))) (f aβ) (f aβ)) β (q' : PathP (Ξ» i β B (p' i)) (f aβ) (f aβ)) β Ξ£-align # ((sym pβ»ΒΉ ,β q) β (p' ,β q')) β‘ Ξ£-align # (sym pβ»ΒΉ ,β q) ββ Ξ£-align # (p' ,β q')) (Ξ» q q' β Ξ£-align # ((refl ,β q) β (refl ,β q')) β‘Λβ¨ ap# Ξ£-align (ap-β (aβ ,_) q q') β©β‘Λ Ξ£-align # (refl ,β q β q') β‘β¨β© refl , align refl # (q β q') β‘β¨ refl ,β align-refl (q β q') β©β‘ refl , q β q' β‘Λβ¨ refl ,β apβ _β_ (align-refl q) (align-refl q') β©β‘Λ refl , align refl # q β align refl # q' β‘Λβ¨ β-idl _ ,β ap (_β align refl # q') (conjP-refl (align refl # q)) β©β‘Λ refl β refl , conjP refl (align refl # q) β align refl # q' β) (ap fst (sym p)) (ap fst p') (ap snd p) (ap snd p')
This concludes the proof that the constructions of the semidirect product of abstract and concrete groups agree over the equivalence between abstract and concrete groups.
Semidirect-concrete-abstract : ΟβB Semidirect-concrete β‘ ΟβBGβΟβBH Semidirect-concrete-abstract = β«-Path (total-hom (Ξ£-align (pt β Ο) .fst) (record { pres-β = Ξ£-align-β (pt β Ο) })) (Ξ£-align (pt β Ο) .snd)
References
- Bezem, Marc, Ulrik Buchholtz, Pierre Cagne, BjΓΈrn Ian Dundas, and Daniel R. Grayson. 2023. βSymmetry.β https://github.com/UniMath/SymmetryBook.