2016-09-06 15:32:23 +02:00
|
|
|
/*
|
2016-04-05 11:55:04 +02:00
|
|
|
Copyright (C) 2016 Pascal Molin
|
|
|
|
|
2016-09-06 15:32:23 +02:00
|
|
|
This file is part of Arb.
|
|
|
|
|
|
|
|
Arb is free software: you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU Lesser General Public License (LGPL) as published
|
|
|
|
by the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version. See <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2016-04-05 11:55:04 +02:00
|
|
|
|
|
|
|
#include "acb_dirichlet.h"
|
|
|
|
#include <math.h>
|
|
|
|
#define PI 3.14159265358
|
|
|
|
#define LOG2 0.69314718055
|
|
|
|
|
|
|
|
ulong
|
2016-07-21 18:43:52 +02:00
|
|
|
acb_dirichlet_theta_length_d(ulong q, double t, slong prec)
|
2016-04-05 11:55:04 +02:00
|
|
|
{
|
2016-06-15 15:24:49 +02:00
|
|
|
double a, la;
|
2016-07-21 18:43:52 +02:00
|
|
|
a = PI / (double)q * t * t;
|
2016-06-15 17:25:14 +02:00
|
|
|
la = (a < .3) ? -log(2*a*(1-a)) : .8;
|
2016-06-15 15:24:49 +02:00
|
|
|
la = ((double)prec * LOG2 + la) / a;
|
|
|
|
return ceil(sqrt(la)+.5);
|
2016-04-05 11:55:04 +02:00
|
|
|
}
|
2016-04-12 15:07:04 +02:00
|
|
|
|
|
|
|
ulong
|
2016-07-21 18:43:52 +02:00
|
|
|
acb_dirichlet_theta_length(ulong q, const arb_t t, slong prec)
|
2016-04-12 15:07:04 +02:00
|
|
|
{
|
2016-07-21 18:43:52 +02:00
|
|
|
double dt;
|
2016-04-12 15:07:04 +02:00
|
|
|
ulong len;
|
2016-07-21 18:43:52 +02:00
|
|
|
arf_t at;
|
|
|
|
arf_init(at);
|
|
|
|
arb_get_lbound_arf(at, t, 53);
|
|
|
|
dt = arf_get_d(at, ARF_RND_DOWN);
|
|
|
|
len = acb_dirichlet_theta_length_d(q, dt, prec);
|
|
|
|
arf_clear(at);
|
2016-04-12 15:07:04 +02:00
|
|
|
return len;
|
|
|
|
}
|
2016-09-08 18:01:09 +02:00
|
|
|
|
|
|
|
/* bound for sum_{k>n} k*exp(-a k^2) */
|
|
|
|
void
|
|
|
|
mag_tail_kexpk2_arb(mag_t res, const arb_t a, ulong n)
|
|
|
|
{
|
|
|
|
mag_t m;
|
|
|
|
mag_init(m);
|
|
|
|
arb_get_mag_lower(m, a);
|
2016-09-09 21:53:31 +02:00
|
|
|
/* a < 1/4 */
|
2016-09-08 18:01:09 +02:00
|
|
|
if (mag_cmp_2exp_si(m, -2) <= 0)
|
|
|
|
{
|
|
|
|
mag_t c;
|
|
|
|
mag_init(c);
|
2016-09-14 15:37:23 +02:00
|
|
|
mag_mul_ui_lower(res, m, n*n-n+1); /* todo: possible overflow */
|
2016-09-08 18:01:09 +02:00
|
|
|
mag_expinv(res, res);
|
2016-09-09 21:53:31 +02:00
|
|
|
/* c = 2a(1+2a) */
|
2016-09-14 15:37:23 +02:00
|
|
|
mag_mul_2exp_si(m, m, 1);
|
|
|
|
mag_one(c);
|
2016-09-09 21:53:31 +02:00
|
|
|
mag_add_lower(c, m, c);
|
|
|
|
mag_mul_lower(c, m, c);
|
2016-09-08 18:01:09 +02:00
|
|
|
mag_div(res, res, c);
|
|
|
|
mag_clear(c);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-09-14 15:37:23 +02:00
|
|
|
mag_mul_ui_lower(res, m, n*n-n-1); /* todo: possible overflow */
|
2016-09-08 18:01:09 +02:00
|
|
|
mag_expinv(res, res);
|
|
|
|
mag_mul_ui(res, res, 2);
|
|
|
|
}
|
|
|
|
mag_clear(m);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* a(t) = Pi / q * t^2 */
|
|
|
|
void
|
|
|
|
_acb_dirichlet_theta_argument_at_arb(arb_t xt, ulong q, const arb_t t, slong prec)
|
|
|
|
{
|
|
|
|
arb_const_pi(xt, prec);
|
|
|
|
arb_div_ui(xt, xt, q, prec);
|
|
|
|
arb_mul(xt, xt, t, prec);
|
|
|
|
arb_mul(xt, xt, t, prec);
|
|
|
|
}
|