Library HoTT.Algebra.Groups.GroupCoeq
Require Import Basics Types.
Require Import WildCat.Core.
Require Import Truncations.Core.
Require Import Algebra.Groups.Group.
Require Import Colimits.Coeq.
Require Import Algebra.Groups.FreeProduct.
Require Import List.Core.
Local Open Scope mc_scope.
Local Open Scope mc_mult_scope.
Require Import WildCat.Core.
Require Import Truncations.Core.
Require Import Algebra.Groups.Group.
Require Import Colimits.Coeq.
Require Import Algebra.Groups.FreeProduct.
Require Import List.Core.
Local Open Scope mc_scope.
Local Open Scope mc_mult_scope.
Coequalizers of group homomorphisms
Definition GroupCoeq {A B : Group} (f g : A $-> B) : Group.
Proof.
napply (@AmalgamatedFreeProduct (FreeProduct A A) A B).
- exact (FreeProduct_rec (Id _) (Id _)).
- exact (FreeProduct_rec f g).
Defined.
Definition groupcoeq_in {A B : Group} {f g : A $-> B}
: B $-> GroupCoeq f g
:= amal_inr.
Definition groupcoeq_glue {A B : Group} {f g : A $-> B}
: groupcoeq_in (f:=f) (g:=g) $o f $== groupcoeq_in $o g.
Proof.
intros x; simpl.
rewrite <- (right_identity (f x)).
rewrite <- (right_identity (g x)).
rhs_V napply (amal_glue (freeproduct_inr x)).
symmetry.
napply (amal_glue (freeproduct_inl x)).
Defined.
Definition groupcoeq_rec {A B C : Group} (f g : A $-> B)
(h : B $-> C) (p : h $o f $== h $o g)
: GroupCoeq f g $-> C.
Proof.
rapply (AmalgamatedFreeProduct_rec C (h $o f) h).
snapply freeproduct_ind_homotopy.
The goals generated are very simple, but we give explicit proofs with wild cat terms to stop Coq from unfolding terms when checking the proof. Note that the category of groups is definitionally associative.
- refine (cat_assoc _ _ _ $@ _ $@ cat_assoc_opp _ _ _).
exact ((_ $@L freeproduct_rec_beta_inl _ _) $@ cat_idr _
$@ (_ $@L freeproduct_rec_beta_inl _ _)^$).
- refine (cat_assoc _ _ _ $@ _ $@ cat_assoc_opp _ _ _).
exact ((_ $@L freeproduct_rec_beta_inr _ _) $@ (cat_idr _ $@ p)
$@ (_ $@L freeproduct_rec_beta_inr _ _)^$).
Defined.
exact ((_ $@L freeproduct_rec_beta_inl _ _) $@ cat_idr _
$@ (_ $@L freeproduct_rec_beta_inl _ _)^$).
- refine (cat_assoc _ _ _ $@ _ $@ cat_assoc_opp _ _ _).
exact ((_ $@L freeproduct_rec_beta_inr _ _) $@ (cat_idr _ $@ p)
$@ (_ $@L freeproduct_rec_beta_inr _ _)^$).
Defined.
TODO: unify this with groupcoeq_rec. It will require doing the analagous thing for AmalgamatedFreeProduct.
Definition equiv_groupcoeq_rec `{Funext} {A B C : Group} (f g : A $-> B)
: {h : B $-> C & h $o f $== h $o g} <~> (GroupCoeq f g $-> C).
Proof.
nrefine (equiv_amalgamatedfreeproduct_rec C oE _).
nrefine (equiv_sigma_symm _ oE _).
napply equiv_functor_sigma_id.
intros h.
transitivity {b : A $-> C & (b $== h $o f) × (b $== h $o g)}%type.
{ nrefine (equiv_functor_sigma_id (fun b ⇒ equiv_sigma_prod0 _ _) oE _).
symmetry.
nrefine (_ oE (equiv_sigma_assoc' _ _)).
transitivity {fp' : {f' : A $-> C & f' = h $o f} & fp'.1 $== h $o g}.
- exact (equiv_functor_sigma_pb
(equiv_functor_sigma_id (fun _ ⇒ equiv_path_grouphomomorphism))).
- exact (@equiv_contr_sigma _ _ (contr_basedpaths' (h $o f))). }
snapply equiv_functor_sigma_id.
intros h'; cbn beta.
nrefine (equiv_freeproduct_ind_homotopy _ _ oE _).
snapply equiv_functor_prod'.
- snapply equiv_functor_forall_id; simpl; intros a.
by rewrite 2 grp_unit_r.
- snapply equiv_functor_forall_id; simpl; intros a.
by rewrite 2 grp_unit_r.
Defined.
Definition groupcoeq_ind_hprop {G H : Group} {f g : G $-> H}
(P : GroupCoeq f g → Type) `{∀ x, IsHProp (P x)}
(c : ∀ h, P (groupcoeq_in h))
(Hop : ∀ x y, P x → P y → P (x × y))
: ∀ x, P x.
Proof.
snapply amalgamatedfreeproduct_ind_hprop.
- exact _.
- intros x.
rewrite <- (right_identity x).
refine ((amal_glue (freeproduct_inl x))^ #_).
simpl.
rewrite (right_identity (f x)).
exact (c (f x)).
- exact c.
- exact Hop. (* Slow, ~0.09s *)
Defined. (* Slow, ~0.09s *)
Definition groupcoeq_ind_homotopy {G H K : Group} {f g : G $-> H}
{h h' : GroupCoeq f g $-> K}
(r : h $o groupcoeq_in $== h' $o groupcoeq_in)
: h $== h'.
Proof.
rapply (groupcoeq_ind_hprop _ r).
intros x y p q; by napply grp_homo_op_agree.
Defined.
Definition functor_groupcoeq
{G H : Group} {f g : G $-> H} {G' H' : Group} {f' g' : G' $-> H'}
(h : G $-> G') (k : H $-> H')
(p : k $o f $== f' $o h) (q : k $o g $== g' $o h)
: GroupCoeq f g $-> GroupCoeq f' g'.
Proof.
refine (groupcoeq_rec f g (groupcoeq_in $o k) _).
refine (cat_assoc _ _ _ $@ _ $@ cat_assoc_opp _ _ _).
refine ((_ $@L p) $@ _ $@ (_ $@L q^$)).
refine (cat_assoc_opp _ _ _ $@ (_ $@R _) $@ cat_assoc _ _ _).
apply groupcoeq_glue.
Defined.
: {h : B $-> C & h $o f $== h $o g} <~> (GroupCoeq f g $-> C).
Proof.
nrefine (equiv_amalgamatedfreeproduct_rec C oE _).
nrefine (equiv_sigma_symm _ oE _).
napply equiv_functor_sigma_id.
intros h.
transitivity {b : A $-> C & (b $== h $o f) × (b $== h $o g)}%type.
{ nrefine (equiv_functor_sigma_id (fun b ⇒ equiv_sigma_prod0 _ _) oE _).
symmetry.
nrefine (_ oE (equiv_sigma_assoc' _ _)).
transitivity {fp' : {f' : A $-> C & f' = h $o f} & fp'.1 $== h $o g}.
- exact (equiv_functor_sigma_pb
(equiv_functor_sigma_id (fun _ ⇒ equiv_path_grouphomomorphism))).
- exact (@equiv_contr_sigma _ _ (contr_basedpaths' (h $o f))). }
snapply equiv_functor_sigma_id.
intros h'; cbn beta.
nrefine (equiv_freeproduct_ind_homotopy _ _ oE _).
snapply equiv_functor_prod'.
- snapply equiv_functor_forall_id; simpl; intros a.
by rewrite 2 grp_unit_r.
- snapply equiv_functor_forall_id; simpl; intros a.
by rewrite 2 grp_unit_r.
Defined.
Definition groupcoeq_ind_hprop {G H : Group} {f g : G $-> H}
(P : GroupCoeq f g → Type) `{∀ x, IsHProp (P x)}
(c : ∀ h, P (groupcoeq_in h))
(Hop : ∀ x y, P x → P y → P (x × y))
: ∀ x, P x.
Proof.
snapply amalgamatedfreeproduct_ind_hprop.
- exact _.
- intros x.
rewrite <- (right_identity x).
refine ((amal_glue (freeproduct_inl x))^ #_).
simpl.
rewrite (right_identity (f x)).
exact (c (f x)).
- exact c.
- exact Hop. (* Slow, ~0.09s *)
Defined. (* Slow, ~0.09s *)
Definition groupcoeq_ind_homotopy {G H K : Group} {f g : G $-> H}
{h h' : GroupCoeq f g $-> K}
(r : h $o groupcoeq_in $== h' $o groupcoeq_in)
: h $== h'.
Proof.
rapply (groupcoeq_ind_hprop _ r).
intros x y p q; by napply grp_homo_op_agree.
Defined.
Definition functor_groupcoeq
{G H : Group} {f g : G $-> H} {G' H' : Group} {f' g' : G' $-> H'}
(h : G $-> G') (k : H $-> H')
(p : k $o f $== f' $o h) (q : k $o g $== g' $o h)
: GroupCoeq f g $-> GroupCoeq f' g'.
Proof.
refine (groupcoeq_rec f g (groupcoeq_in $o k) _).
refine (cat_assoc _ _ _ $@ _ $@ cat_assoc_opp _ _ _).
refine ((_ $@L p) $@ _ $@ (_ $@L q^$)).
refine (cat_assoc_opp _ _ _ $@ (_ $@R _) $@ cat_assoc _ _ _).
apply groupcoeq_glue.
Defined.