Ask Your Question
1

Understanding Output in SageMath Regarding Dirichlet Characters

asked 2018-12-05 18:17:59 +0200

Nicklovn gravatar image

updated 2021-07-15 08:15:03 +0200

FrédéricC gravatar image
 p=7
G = DirichletGroup(p); G

m=3; n=ZZ((p-1)/m); print m,n

c=G[1]

c1=c^n;c1

The output is:

Dirichlet character modulo 7 of conductor 7 mapping 3 |--> zeta6 - 1

Can anyone explain what zeta6 is? Is this the Riemann-Zeta function? Is this the whole group of units? Is there a relation to the Eisenstein primes? I'm still a bit weak in this material and am having trouble grasping some of these sage outputs. Thank you in advance!

edit retag flag offensive close merge delete

Comments

kcrisman gravatar imagekcrisman ( 2018-12-07 19:14:46 +0200 )edit

1 Answer

Sort by » oldest newest most voted
1

answered 2018-12-05 19:42:54 +0200

rburing gravatar image

updated 2018-12-05 20:01:37 +0200

Armed with some knowledge of the general structure of Sage, you can find it out:

sage: c1(3)
zeta6 - 1
sage: K = c1(3).parent(); K
Cyclotomic Field of order 6 and degree 2
sage: K.gens()
(zeta6,)
sage: zeta6 = K.gens()[0]
sage: zeta6.minpoly()
x^2 - x + 1
sage: cyclotomic_polynomial(6)
x^2 - x + 1
sage: c1(3).minpoly()
x^2 + x + 1
sage: UK = K.unit_group()
Unit group with structure C6 of Cyclotomic Field of order 6 and degree 2
sage: UK.gens_values()
[zeta6]
sage: c1(3) in UK
True
sage: UK.log(c1(3))
(2,)
sage: zeta6^2
zeta6 - 1
edit flag offensive delete link more

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: 2018-12-05 18:17:59 +0200

Seen: 234 times

Last updated: Dec 05 '18