X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Finifcns_zeta.cpp;h=7a8b089aa11131876f2d528dbd1f86c7a73cfe6f;hb=f2450a6c7a4c481baff74bd70ce39132e219bf74;hp=cd63876506fdb566fdaa681339f4308cfb84442c;hpb=48b41ea321ed9fa6115a1061d1a1d2f8d8ad0400;p=ginac.git diff --git a/ginac/inifcns_zeta.cpp b/ginac/inifcns_zeta.cpp index cd638765..7a8b089a 100644 --- a/ginac/inifcns_zeta.cpp +++ b/ginac/inifcns_zeta.cpp @@ -3,7 +3,7 @@ * Implementation of the Zeta-function and some related stuff. */ /* - * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -29,60 +29,98 @@ #include "numeric.h" #include "power.h" #include "symbol.h" +#include "utils.h" +#ifndef NO_NAMESPACE_GINAC namespace GiNaC { +#endif // ndef NO_NAMESPACE_GINAC ////////// // Riemann's Zeta-function ////////// -static ex zeta_eval(ex const & x) +static ex zeta1_evalf(const ex & x) +{ + BEGIN_TYPECHECK + TYPECHECK(x,numeric) + END_TYPECHECK(zeta(x)) + + return zeta(ex_to_numeric(x)); +} + +static ex zeta1_eval(const ex & x) { if (x.info(info_flags::numeric)) { numeric y = ex_to_numeric(x); // trap integer arguments: if (y.is_integer()) { if (y.is_zero()) - return -exHALF(); - if (x.is_equal(exONE())) + return -_ex1_2(); + if (x.is_equal(_ex1())) throw(std::domain_error("zeta(1): infinity")); if (x.info(info_flags::posint)) { if (x.info(info_flags::odd)) return zeta(x).hold(); else - return abs(bernoulli(y))*pow(Pi,x)*numTWO().power(y-numONE())/factorial(y); + return abs(bernoulli(y))*pow(Pi,x)*pow(_num2(),y-_num1())/factorial(y); } else { if (x.info(info_flags::odd)) - return -bernoulli(numONE()-y)/(numONE()-y); + return -bernoulli(_num1()-y)/(_num1()-y); else - return numZERO(); + return _num0(); } } } return zeta(x).hold(); } -static ex zeta_evalf(ex const & x) +static ex zeta1_deriv(const ex & x, unsigned deriv_param) { - BEGIN_TYPECHECK - TYPECHECK(x,numeric) - END_TYPECHECK(zeta(x)) + GINAC_ASSERT(deriv_param==0); - return zeta(ex_to_numeric(x)); + return zeta(_ex1(), x); } -static ex zeta_diff(ex const & x, unsigned diff_param) +const unsigned function_index_zeta1 = + function::register_new(function_options("zeta"). + eval_func(zeta1_eval). + evalf_func(zeta1_evalf). + derivative_func(zeta1_deriv). + overloaded(2)); + +////////// +// Derivatives of Riemann's Zeta-function zeta(0,x)==zeta(x) +////////// + +static ex zeta2_eval(const ex & n, const ex & x) { - GINAC_ASSERT(diff_param==0); + if (n.info(info_flags::numeric)) { + // zeta(0,x) -> zeta(x) + if (n.is_zero()) + return zeta(x); + } - return exZERO(); // should return zeta(numONE(),x); + return zeta(n, x).hold(); } -static ex zeta_series(ex const & x, symbol const & s, ex const & point, int order) +static ex zeta2_deriv(const ex & n, const ex & x, unsigned deriv_param) { - throw(std::logic_error("don't know the series expansion of the zeta function")); + GINAC_ASSERT(deriv_param<2); + + if (deriv_param==0) { + // d/dn zeta(n,x) + throw(std::logic_error("cannot diff zeta(n,x) with respect to n")); + } + // d/dx psi(n,x) + return zeta(n+1,x); } -REGISTER_FUNCTION(zeta, zeta_eval, zeta_evalf, zeta_diff, zeta_series); +const unsigned function_index_zeta2 = + function::register_new(function_options("zeta"). + eval_func(zeta2_eval). + derivative_func(zeta2_deriv). + overloaded(2)); +#ifndef NO_NAMESPACE_GINAC } // namespace GiNaC +#endif // ndef NO_NAMESPACE_GINAC