Ask Your Question

ayodan's profile - activity

2023-09-29 06:09:58 +0200 commented question character table of normalizer

(I made a new post just to point out the inconsistency)

2023-09-29 06:08:51 +0200 commented question character table of normalizer

It just seems inconsistent. Like G.conjugacy_classes_representatives() for G = CyclicPermutationGroup(4) and n.conjugacy

2023-09-28 10:07:25 +0200 received badge  Editor (source)
2023-09-28 10:07:25 +0200 edited question character table of normalizer

character table of normalizer Consider the character table of the cyclic permutation group $\mathbb{Z}_4$ Z4 = CyclicPe

2023-09-28 08:41:54 +0200 received badge  Supporter (source)
2023-09-28 08:41:51 +0200 marked best answer Evaluating expressions with zetan for insertion into numpy array

I'm working with the character table of the centralizer for Z4: G = CyclicPermutationGroup(4) followed by t = G.character_table() yields

[     1      1      1      1]
[     1     -1      1     -1]
[     1 -zeta4     -1  zeta4]
[     1  zeta4     -1 -zeta4]

I'm trying to simplify results of calculations using this table for insertion into numpy arrays (these results simply involve adding and multiplying elements of the table). For example, let us consider f = t[1,3] - 4 * t[3,3] which evaluates to -4*zeta4 - 1. I've tried using AlgebraicConverter and .arithmetic() functionalities.

a = AlgebraicConverter(QQbar)
a.arithmetic(f, f.operator())

I obtain the following error

AttributeError: 'sage.rings.number_field.number_field_element.NumberFieldElement_absolute' object has no attribute 'operator'

Advice on how to remedy this error or how to follow a better approach would be greatly appreciated.

2023-09-28 08:41:51 +0200 received badge  Scholar (source)
2023-09-28 08:37:46 +0200 asked a question character table of normalizer

character table of normalizer Consider the character table of the cyclic permutation group $\mathbb{Z}_4$ Z4 = CyclicPe

2023-09-27 11:33:45 +0200 received badge  Student (source)
2023-09-26 22:38:53 +0200 commented question Evaluating expressions with zetan for insertion into numpy array

Yes thank you!

2023-09-26 00:11:56 +0200 asked a question Evaluating expressions with zetan for insertion into numpy array

Evaluating expressions with zetan for insertion into numpy array I'm working with the character table of the centralizer

2023-09-25 23:37:22 +0200 commented question read character table

Ok thanks!

2023-09-25 02:52:40 +0200 asked a question read character table

read character table We can get the character table for a finite group using the .character_table() method. As an exampl