-
Notifications
You must be signed in to change notification settings - Fork 195
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
conjugation of group elements #2178
Conversation
I chose the convention |
Perhaps the best way forward is to have both and use them whenever they are needed. Any result about one will become a result about the other in the opposite group. |
I think
In the opposite group, it'll turn out to be |
Co-authored-by: Dan Christensen <jdc+github@uwo.ca> Signed-off-by: Ali Caglayan <alizter@gmail.com>
cbbfcd4
to
ec97d58
Compare
(** 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. |
There was a problem hiding this comment.
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.
This LGTM. |
Here are the basics on conjugation in groups.