First time here? Check out the FAQ!

Ask Your Question
0

get multiplicative subgroup of Z/nZ

asked 11 years ago

jack77 gravatar image

updated 11 years ago

Is it possible to get a multiplicative group object of integers modulo n?

For example for n=15 the elements are {1,2,4,7,8,11,13,14}

Of course I can get the elements itself with

R = Integers(15)

R.list_of_elements_of_multiplicative_group()

but not as a group.

It is also possible to construct the isomorphic group C2 x C4, but then the elements are not integers:

G=AbelianGroup([2,4])

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 11 years ago

Volker Braun gravatar image

The list_of_elements_of_multiplicative_group should definitely return elements of R, not Python integers. Somewhat ugly, but ok there is your group:

sage: M = map(R, R.list_of_elements_of_multiplicative_group())
sage: M[2]*M[5] in M
True
sage: prod(M) == 1
True

Now the isomorphism with C2 x C4 is not unique, so its not clear how this can be improved. Maybe one could return a particular morphism from C2 x C4 to R. In any case, as far as I know this is not (yet) implemented.

Preview: (hide)
link

Comments

Hello, I'm not sure if I have an account for the sagemath tracker. Did you open an issue ticket for return value of 'list_of_elements_of_multiplicative_group' ?

jack77 gravatar imagejack77 ( 11 years ago )

Yeah this surely works for the case when R is defined as Integers(something). Is there any method to get it for a general finite field for instance, a residue field?

mathjain gravatar imagemathjain ( 6 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 11 years ago

Seen: 1,489 times

Last updated: Jul 11 '13