Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
0

Special value of Dedekind Zeta Functions

asked 1 year ago

imbluedabedee gravatar image

Is there a way to compute the values of the following special kind of Dedekind Zeta Function:

Assume a,bN and K=Q(5)L=Q(a+b5). Set d=a+b5 which is also totally negative and furthermore a discriminant of L.

Now my problem is, can I calculate the (exact or numerical) values of the Dedekind Zeta function ζL(s) for s positive odd integer?

Thanks for any help!

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 1 year ago

dan_fulea gravatar image

Let us get an explicit field L, i will ignore any restriction on a,b.

a, b = 7, 3    # chosen so that we have a nice discriminant below
L.<u> = NumberField(sqrt(a + b*sqrt(5)).minpoly())
print(f"L is <{L}> with discriminant {L.disc()}")

So our test situation is:

L is <Number Field in u with defining polynomial x^4 - 14*x^2 + 4> with discriminant 1600

Numerically i tried then with a precision equal to 300 (bits):

sage: LZ = L.zeta_function(prec=300)
sage: LZ(3)
1.01897545804910243658865624113355956226224991920025923733956382609692854856490756716927418
sage: LZ(5)
1.00101170969216360222562623040290551783199837820002159868621703090382967126817104154134429
sage: LZ(7)
1.00006145739122202145223364281491843791554787649331378421635463305298859721049129811714303

Note that the code goes to pari per default. So let us see what happens in there exactly:

? lfun(x^4 - 14*x^2 + 4, 3)
%42 = 1.0189754580491024365886562411335595623
? \p 100
   realprecision = 115 significant digits (100 digits displayed)
? lfun(x^4 - 14*x^2 + 4, 3)
%43 = 1.018975458049102436588656241133559562262249919200259237339563826096928548564907567169274179589141566

So an alternative is

sage: f = (sqrt(7 + 3*sqrt(5))).minpoly()
sage: pari.lfun(f, 3)
1.01897545804910

(And we can go also with similar code to have a better control of the precision.)

Preview: (hide)
link

Comments

I hoped to get at least ζL(3) as a linear combination with rational coefficients of values of the trilogarithm computed in points of L... no success so far, but i will come back. The discriminant also shows in the formula through its square root, this being the reason for the choice of the sample field L.

dan_fulea gravatar imagedan_fulea ( 1 year ago )

Hi dan, thanks a lot for your answer! This is very helpful!

imbluedabedee gravatar imageimbluedabedee ( 1 year 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

1 follower

Stats

Asked: 1 year ago

Seen: 357 times

Last updated: Feb 17 '24