Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

conjugation of group elements #2178

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions theories/Algebra/Groups/Group.v
Original file line number Diff line number Diff line change
Expand Up @@ -1146,3 +1146,69 @@ Proof.
lhs nrapply grp_homo_op.
apply ap, grp_homo_inv.
Defined.

(** ** Conjugation *)

(** Conjugation by a group element is a homomorphism. Often we need to use properties about group homomorphisms in order to prove things about conjugation, so it is helpful to define it directly as a group homomorphism. *)
Definition grp_conj {G : Group} (x : G) : G $-> G.
Proof.
snrapply Build_GroupHomomorphism.
- exact (fun y => x * y * x^).
- intros y z.
rhs nrapply grp_assoc.
apply (ap (.* x^)).
rhs nrapply grp_assoc.
lhs nrapply grp_assoc.
apply (ap (.* z)).
symmetry; apply grp_inv_gV_g.
Defined.

(** Conjugation by the unit element is the identity. *)
Definition grp_conj_unit {G : Group} : grp_conj (G:=G) 1 $== Id _.
Proof.
intros x.
apply grp_moveR_gV.
rhs nrapply grp_unit_r.
nrapply grp_unit_l.
Defined.

(** Conjugation commutes with group homomorphisms. *)
Definition grp_homo_conj {G H : Group} (f : G $-> H) (x : G)
: f $o grp_conj x $== grp_conj (f x) $o f.
Proof.
intros z; simpl.
by rewrite !grp_homo_op, grp_homo_inv.
Defined.
Comment on lines +1175 to +1181
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added this lemma when rebasing.


(** Conjugation respects composition. *)
Definition grp_conj_op {G : Group} (x y : G)
: grp_conj (x * y) $== grp_conj x $o grp_conj y.
Proof.
intros z; simpl.
by rewrite grp_inv_op, !grp_assoc.
Defined.

(** Conjugating by an element then its inverse is the identity. *)
Definition grp_conj_inv_r {G : Group} (x : G)
: grp_conj x $o grp_conj x^ $== Id _.
Proof.
refine ((grp_conj_op _ _)^$ $@ _ $@ grp_conj_unit).
intros y.
nrapply (ap (fun x => grp_conj x y)).
apply grp_inv_r.
Defined.

(** Conjugating by an inverse then the element is the identity. *)
Definition grp_conj_inv_l {G : Group} (x : G)
: grp_conj x^ $o grp_conj x $== Id _.
Proof.
refine ((grp_conj_op _ _)^$ $@ _ $@ grp_conj_unit).
intros y.
nrapply (ap (fun x => grp_conj x y)).
apply grp_inv_l.
Defined.

(** Conjugation is a group automorphism. *)
Definition grp_iso_conj {G : Group} (x : G) : G $<~> G
:= cate_adjointify (grp_conj x) (grp_conj x^)
(grp_conj_inv_r _) (grp_conj_inv_l _).
Loading