arb/acb_dirichlet/gauss_sum.c

115 lines
2.6 KiB
C
Raw Normal View History

2016-09-06 15:32:23 +02:00
/*
2016-04-12 15:07: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-12 15:07:04 +02:00
#include "acb_dirichlet.h"
static void
gauss_sum_non_primitive(acb_t res, const acb_dirichlet_group_t G, const acb_dirichlet_char_t chi, slong prec)
{
slong k, mu = 1;
ulong NN0 = G->q / chi->conductor;
/* G(chi) = mu(N/N0)chi0(N/N0)G(chi0) */
2016-07-13 15:54:45 +02:00
if (NN0 % 2 == 0)
{
2016-07-13 15:54:45 +02:00
if (G->q % 4)
mu = -1;
else
{
acb_zero(res);
return;
}
}
2016-07-13 15:54:45 +02:00
for (k = G->neven; k < G->num; k++)
{
ulong p = G->P[k].p;
if (G->P[k].e > 1 && NN0 % (p*p) == 0)
{
acb_zero(res);
return;
}
if (NN0 % p == 0)
mu *= -1;
}
if (chi->x->n == 1)
{
acb_set_si(res, mu);
}
else
{
acb_dirichlet_group_t G0;
acb_dirichlet_char_t chi0;
acb_t z;
2016-07-13 15:54:45 +02:00
acb_dirichlet_subgroup_init(G0, G, chi->conductor);
acb_dirichlet_char_init(chi0, G);
acb_dirichlet_char_primitive(chi0, G0, G, chi);
acb_init(z);
acb_dirichlet_gauss_sum(z, G0, chi0, prec);
acb_dirichlet_chi(res, G0, chi0, NN0, prec);
acb_mul(res, res, z, prec);
acb_mul_si(res, res, mu, prec);
acb_dirichlet_group_clear(G0);
acb_dirichlet_char_clear(chi0);
acb_clear(z);
}
}
void
acb_dirichlet_gauss_sum_order2(acb_t res, const acb_dirichlet_char_t chi, slong prec)
{
if (chi->parity)
{
arb_zero(acb_realref(res));
arb_sqrt_ui(acb_imagref(res), chi->q, prec);
}
else
{
arb_zero(acb_imagref(res));
arb_sqrt_ui(acb_realref(res), chi->q, prec);
}
}
2016-04-12 15:07:04 +02:00
void
acb_dirichlet_gauss_sum(acb_t res, const acb_dirichlet_group_t G, const acb_dirichlet_char_t chi, slong prec)
{
2016-09-01 12:12:33 +02:00
/* TODO: no need, factor also does it... */
if (chi->conductor != G->q)
{
gauss_sum_non_primitive(res, G, chi, prec);
}
2016-07-14 18:55:44 +02:00
else if (chi->order.n <= 2)
2016-04-12 15:07:04 +02:00
{
acb_dirichlet_gauss_sum_order2(res, chi, prec);
2016-04-12 15:07:04 +02:00
}
2016-07-13 15:54:45 +02:00
else if (G->num > 1 && G->num > G->neven)
{
acb_dirichlet_gauss_sum_factor(res, G, chi, prec);
}
2016-04-12 15:07:04 +02:00
else
{
if (acb_dirichlet_theta_length_d(G->q, 1, prec) > G->q)
acb_dirichlet_gauss_sum_naive(res, G, chi, prec);
else
acb_dirichlet_gauss_sum_theta(res, G, chi, prec);
}
}