Ask Your Question

dimahphone's profile - activity

2023-05-19 14:28:50 +0200 received badge  Famous Question (source)
2023-05-19 14:28:50 +0200 received badge  Notable Question (source)
2019-08-08 14:43:07 +0200 received badge  Popular Question (source)
2018-06-05 08:11:54 +0200 received badge  Nice Question (source)
2018-06-05 08:11:48 +0200 received badge  Nice Answer (source)
2018-05-30 04:00:45 +0200 received badge  Editor (source)
2018-04-09 09:25:16 +0200 received badge  Teacher (source)
2018-04-09 09:25:16 +0200 received badge  Self-Learner (source)
2018-04-09 09:25:16 +0200 received badge  Necromancer (source)
2018-04-09 06:26:45 +0200 answered a question Matrix Group over Symbolic Ring

Case closed, I finally use CyclotomicField(8) and it works.

2018-03-07 02:12:59 +0200 commented question Matrix Group over Symbolic Ring

Do you mean "real need" is what I need on that code? Sorry if I am wrong understanding your comment.

2018-02-08 03:35:02 +0200 received badge  Supporter (source)
2018-02-06 07:55:16 +0200 commented answer Matrix Group over Symbolic Ring

Thank you for the suggestion. It works. But, I still have problem when I use QQbar. I can not do anything for groups I get. For example, I can not know the element order of the group. By hand, I get that the order is 8. Do you have any suggestion? Thank you very much. Sorry if it disturbs your time.

2018-02-05 22:09:59 +0200 received badge  Student (source)
2018-02-05 05:37:03 +0200 asked a question Matrix Group over Symbolic Ring

I have problem on generate matrix group over symbolic ring.

First, I define

eta=I;
eta2=(1+I)*sqrt(2)/2;

Then, define a generator matrix

T=matrix(SR,4,[eta**(i*j)*eta2/2 for i in range(4) for j in range(4)]);

I try to make a matrix group by

G=MatrixGroup(T);

What I get is only very long computation that does not give any result. Can somebody help me? Thank you very much.

I have checked the order of T, I got 8 since T**8=I where I is identity matrix.

2018-02-05 05:28:44 +0200 commented question does as_permutation_group() respect generators?

I am not good on Algebra, exactly on representation theory, but In my understanding, that is always. It means all finite groups can be represented by matrix group. Perhaps, link below may be able to help you. Sorry if it does not help you. https://math.stackexchange.com/questions/85308/can-every-group-be-represented-by-a-group-of-matrices (link text)