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

Find the conjugating matrix that can convert all the generators of a matrix group to simple integer matrices simultaneously. #19

Open
hongyi-zhao opened this issue Oct 17, 2022 · 2 comments

Comments

@hongyi-zhao
Copy link

hongyi-zhao commented Oct 17, 2022

Hi Developers of RepnDecomp,

This is a problem similar to the one discussed here. This time, I want to find the conjugating matrix that can convert all the generators of a matrix group to simple integer matrices simultaneously, just like the TMPG229meToITA matrix as shown below:

gap> SGGenSet229me:=[
>   [[0, -1, 0, 1/4],
>   [0, 0, -1, 1/4],
>   [-1, 0, 0, 1/4],
>   [0, 0, 0, 1]],
>   [[-1, 2, -1, -3/8],
>   [-3/2, 3/2, -1/2, -1/16],
>   [-1/2, 3/2, -3/2, -17/16],
>   [0, 0, 0, 1]]
>   ];;
gap> TMSG229meToITA:=[[1, 1/2, 1/2, 1/8],
> [1/2, 1, 1/2, -3/8],
> [1/2, 1/2, 1, 1/8],
> [0, 0, 0, 1]];;
gap> PGGenSet229me:=SGGenSet229me{[1..Length(SGGenSet229me)]}{[1..3]}{[1..3]};;
gap> TMPG229meToITA:=TMSG229meToITA{[1..3]}{[1..3]};;
gap> List(PGGenSet229me, x-> TMPG229meToITA^-1 * x * TMPG229meToITA);
[ [ [ 0, -1, 0 ], [ 0, 0, -1 ], [ -1, 0, 0 ] ], [ [ 0, 1, 0 ], [ -1,
0, 0 ], [ 0, 0, -1 ] ] ]

I'm not sure whether RepnDecomp package is helpful in solving this problem. Any tips will be appreciated.

N.B.: This question has also been posted here.

Regards,
Zhao

@kaashif
Copy link
Collaborator

kaashif commented Oct 18, 2022

I'm not actually a mathematician, and my linear algebra is pretty rusty so I'm not sure either. I'll think about it, but I don't immediately know whether any of the algorithms here can be adapted to produce simple matrices rather than probably-not-simple block diagonal matrices.

I'm pretty sure you'll get more useful responses from the people on the GAP mailing list.

@hongyi-zhao
Copy link
Author

Thank you for your reply and comment.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants