101 lines
2.6 KiB
C
101 lines
2.6 KiB
C
|
/*=============================================================================
|
||
|
|
||
|
This file is part of FLINT.
|
||
|
|
||
|
FLINT is free software; you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation; either version 2 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
FLINT is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with FLINT; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
|
||
|
=============================================================================*/
|
||
|
/******************************************************************************
|
||
|
|
||
|
Copyright (C) 2011 Fredrik Johansson
|
||
|
|
||
|
******************************************************************************/
|
||
|
|
||
|
#include <gmp.h>
|
||
|
#include "flint.h"
|
||
|
#include "fmpz.h"
|
||
|
#include "fmpz_vec.h"
|
||
|
#include "fmpq_poly.h"
|
||
|
|
||
|
void
|
||
|
_fmpq_poly_atanh_series(fmpz * g, fmpz_t gden,
|
||
|
const fmpz * h, const fmpz_t hden, slong n)
|
||
|
{
|
||
|
fmpz * t;
|
||
|
fmpz * u;
|
||
|
fmpz_t tden;
|
||
|
fmpz_t uden;
|
||
|
|
||
|
t = _fmpz_vec_init(n);
|
||
|
u = _fmpz_vec_init(n);
|
||
|
fmpz_init(tden);
|
||
|
fmpz_init(uden);
|
||
|
|
||
|
/* atanh(h(x)) = integral(h'(x)/(1-h(x)^2)) */
|
||
|
_fmpq_poly_mullow(u, uden, h, hden, n, h, hden, n, n);
|
||
|
_fmpz_vec_neg(u, u, n);
|
||
|
fmpz_set(u, uden); /* u += 1 */
|
||
|
_fmpq_poly_derivative(t, tden, h, hden, n);
|
||
|
_fmpq_poly_div_series(g, gden, t, tden, u, uden, n);
|
||
|
_fmpq_poly_integral(g, gden, g, gden, n);
|
||
|
|
||
|
_fmpz_vec_clear(t, n);
|
||
|
_fmpz_vec_clear(u, n);
|
||
|
fmpz_clear(tden);
|
||
|
fmpz_clear(uden);
|
||
|
}
|
||
|
|
||
|
|
||
|
void
|
||
|
fmpq_poly_atanh_series(fmpq_poly_t res, const fmpq_poly_t f, slong n)
|
||
|
{
|
||
|
fmpz * f_coeffs;
|
||
|
slong flen = f->length;
|
||
|
|
||
|
if (flen && !fmpz_is_zero(f->coeffs))
|
||
|
{
|
||
|
flint_printf("Exception (fmpq_poly_atanh_series): Constant term != 0.\n");
|
||
|
abort();
|
||
|
}
|
||
|
|
||
|
if (flen == 0 || n < 2)
|
||
|
{
|
||
|
fmpq_poly_zero(res);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
fmpq_poly_fit_length(res, n);
|
||
|
|
||
|
if (flen < n)
|
||
|
{
|
||
|
f_coeffs = _fmpz_vec_init(n);
|
||
|
_fmpz_vec_set(f_coeffs, f->coeffs, flen);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
f_coeffs = f->coeffs;
|
||
|
}
|
||
|
|
||
|
_fmpq_poly_atanh_series(res->coeffs, res->den, f_coeffs, f->den, n);
|
||
|
|
||
|
if (flen < n)
|
||
|
{
|
||
|
_fmpz_vec_clear(f_coeffs, n);
|
||
|
}
|
||
|
|
||
|
_fmpq_poly_set_length(res, n);
|
||
|
_fmpq_poly_normalise(res);
|
||
|
}
|