Skip to content

Commit

Permalink
flip direction of equiv_grp_kernel_corec
Browse files Browse the repository at this point in the history
Signed-off-by: Ali Caglayan <[email protected]>
  • Loading branch information
Alizter committed Jan 22, 2025
1 parent c8258ce commit 9f85dd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions theories/Algebra/Groups/Subgroup.v
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ Defined.
(** Corestriction is an equivalence on group homomorphisms. *)
Definition equiv_subgroup_corec {F : Funext}
(G : Group) {H : Group} (K : Subgroup H)
: (exists (f : G $-> H), forall x, K (f x)) <~> (G $-> subgroup_group K).
: {f : G $-> H & forall x, K (f x)} <~> (G $-> subgroup_group K).
Proof.
snrapply equiv_adjointify.
- exact (sig_rec subgroup_corec).
Expand Down Expand Up @@ -1018,8 +1018,8 @@ Proof.
Defined.

Definition equiv_grp_kernel_corec `{Funext} {A B G : Group} {f : A $-> B}
: (G $-> grp_kernel f) <~> (exists g : G $-> A, f $o g == grp_homo_const)
:= (equiv_subgroup_corec G (grp_kernel f))^-1.
: {g : G $-> A & f $o g == grp_homo_const} <~> (G $-> grp_kernel f)
:= equiv_subgroup_corec G (grp_kernel f).

(** The underlying map of a group homomorphism with a trivial kernel is an embedding. *)
Global Instance isembedding_istrivial_kernel {G H : Group} (f : G $-> H)
Expand Down

0 comments on commit 9f85dd5

Please sign in to comment.