]> www.ginac.de Git - ginac.git/commitdiff
- added Bernoulli numbers
authorRichard Kreckel <Richard.Kreckel@uni-mainz.de>
Mon, 22 Nov 1999 18:26:18 +0000 (18:26 +0000)
committerRichard Kreckel <Richard.Kreckel@uni-mainz.de>
Mon, 22 Nov 1999 18:26:18 +0000 (18:26 +0000)
- fixed Riemann's Zeta function for integer arguments

ginac/inifcns_zeta.cpp
ginac/numeric.cpp
ginac/numeric.h

index 8dbe5d2da58da0e7f263859acf3b3e087c3ec0fc..ae58ec1630cb103a6e2898ee0690386364e79294 100644 (file)
@@ -39,9 +39,10 @@ namespace GiNaC {
 static ex zeta_eval(ex const & x)
 {
     if (x.info(info_flags::numeric)) {
 static ex zeta_eval(ex const & x)
 {
     if (x.info(info_flags::numeric)) {
+        numeric y = ex_to_numeric(x);
         // trap integer arguments:
         // trap integer arguments:
-        if (x.info(info_flags::integer)) {
-            if (x.is_zero())
+        if (y.is_integer()) {
+            if (y.is_zero())
                 return -exHALF();
             if (!x.compare(exONE()))
                 throw(std::domain_error("zeta(1): infinity"));
                 return -exHALF();
             if (!x.compare(exONE()))
                 throw(std::domain_error("zeta(1): infinity"));
@@ -49,20 +50,18 @@ static ex zeta_eval(ex const & x)
                 if (x.info(info_flags::odd))
                     return zeta(x).hold();
                 else
                 if (x.info(info_flags::odd))
                     return zeta(x).hold();
                 else
-                    // return bernoulli(ex_to_numeric(x))*pow(Pi,x)*numTWO().power(ex_to_numeric(x))/factorial(x);
-                    throw (std::domain_error("you found a missing feature"));
+                    return abs(bernoulli(y))*pow(Pi,x)*numTWO().power(y-numONE())/factorial(y);
             } else {
                 if (x.info(info_flags::odd))
             } else {
                 if (x.info(info_flags::odd))
-                    // return -bernoulli(1-ex_to_numeric(x))/(1-ex_to_numeric(x))
-                    throw (std::domain_error("you found a missing feature"));
-                else 
+                    return -bernoulli(numONE()-y)/(numONE()-y);
+                else
                     return numZERO();
             }
         }
     }
     return zeta(x).hold();
 }
                     return numZERO();
             }
         }
     }
     return zeta(x).hold();
 }
-    
+
 static ex zeta_evalf(ex const & x)
 {
     BEGIN_TYPECHECK
 static ex zeta_evalf(ex const & x)
 {
     BEGIN_TYPECHECK
index faffb6c5896a6fdadf1d7fd2c38cdea25a66dcf2..4877dae702c908c740a0133a7fd4246cff8323d2 100644 (file)
@@ -1111,7 +1111,7 @@ numeric doublefactorial(numeric const & nn)
 {
     // META-NOTE:  The whole shit here will become obsolete and may be moved
     // out once CLN learns about double factorial, which should be as soon as
 {
     // META-NOTE:  The whole shit here will become obsolete and may be moved
     // out once CLN learns about double factorial, which should be as soon as
-    // 1.0.3 rolls out.
+    // 1.0.3 rolls out!
     
     // We store the results separately for even and odd arguments.  This has
     // the advantage that we don't have to compute any even result at all if
     
     // We store the results separately for even and odd arguments.  This has
     // the advantage that we don't have to compute any even result at all if
@@ -1124,21 +1124,21 @@ numeric doublefactorial(numeric const & nn)
     static vector<numeric> oddresults;
     static int highest_oddresult = -1;
     
     static vector<numeric> oddresults;
     static int highest_oddresult = -1;
     
-    if ( nn == numeric(-1) ) {
+    if (nn == numeric(-1)) {
         return numONE();
     }
         return numONE();
     }
-    if ( !nn.is_nonneg_integer() ) {
+    if (!nn.is_nonneg_integer()) {
         throw (std::range_error("numeric::doublefactorial(): argument must be integer >= -1"));
     }
         throw (std::range_error("numeric::doublefactorial(): argument must be integer >= -1"));
     }
-    if ( nn.is_even() ) {
+    if (nn.is_even()) {
         int n = nn.div(numTWO()).to_int();
         int n = nn.div(numTWO()).to_int();
-        if ( n <= highest_evenresult ) {
+        if (n <= highest_evenresult) {
             return evenresults[n];
         }
             return evenresults[n];
         }
-        if ( evenresults.capacity() < (unsigned)(n+1) ) {
+        if (evenresults.capacity() < (unsigned)(n+1)) {
             evenresults.reserve(n+1);
         }
             evenresults.reserve(n+1);
         }
-        if ( highest_evenresult < 0 ) {
+        if (highest_evenresult < 0) {
             evenresults.push_back(numONE());
             highest_evenresult=0;
         }
             evenresults.push_back(numONE());
             highest_evenresult=0;
         }
@@ -1149,13 +1149,13 @@ numeric doublefactorial(numeric const & nn)
         return evenresults[n];
     } else {
         int n = nn.sub(numONE()).div(numTWO()).to_int();
         return evenresults[n];
     } else {
         int n = nn.sub(numONE()).div(numTWO()).to_int();
-        if ( n <= highest_oddresult ) {
+        if (n <= highest_oddresult) {
             return oddresults[n];
         }
             return oddresults[n];
         }
-        if ( oddresults.capacity() < (unsigned)n ) {
+        if (oddresults.capacity() < (unsigned)n) {
             oddresults.reserve(n+1);
         }
             oddresults.reserve(n+1);
         }
-        if ( highest_oddresult < 0 ) {
+        if (highest_oddresult < 0) {
             oddresults.push_back(numONE());
             highest_oddresult=0;
         }
             oddresults.push_back(numONE());
             highest_oddresult=0;
         }
@@ -1167,19 +1167,67 @@ numeric doublefactorial(numeric const & nn)
     }
 }
 
     }
 }
 
-/** The Binomial function. It computes the binomial coefficients. If the
- *  arguments are both nonnegative integers and 0 <= k <= n, then
- *  binomial(n, k) = n!/k!/(n-k)! which is the number of ways of choosing k
- *  objects from n distinct objects. If k > n, then binomial(n,k) returns 0. */
+/** The Binomial coefficients.  It computes the binomial coefficients.  For
+ *  integer n and k and positive n this is the number of ways of choosing k
+ *  objects from n distinct objects.  If n is negative, the formula
+ *  binomial(n,k) == (-1)^k*binomial(k-n-1,k) is used to compute the result. */
 numeric binomial(numeric const & n, numeric const & k)
 {
 numeric binomial(numeric const & n, numeric const & k)
 {
-    if (n.is_nonneg_integer() && k.is_nonneg_integer()) {
-        return numeric(::binomial(n.to_int(),k.to_int()));  // -> CLN
-    } else {
-        // should really be gamma(n+1)/(gamma(r+1)/gamma(n-r+1)
-        return numeric(0);
+    if (n.is_integer() && k.is_integer()) {
+        if (n.is_nonneg_integer()) {
+            if (k.compare(n)!=1 && k.compare(numZERO())!=-1)
+                return numeric(::binomial(n.to_int(),k.to_int()));  // -> CLN
+            else
+                return numZERO();
+        } else {
+            return numMINUSONE().power(k)*binomial(k-n-numONE(),k);
+        }        
+    }
+    
+    // should really be gamma(n+1)/(gamma(r+1)/gamma(n-r+1) or a suitable limit
+    throw (std::range_error("numeric::binomial(): donĀ“t know how to evaluate that."));
+}
+
+/** Bernoulli number.  The nth Bernoulli number is the coefficient of x^n/n!
+ *  in the expansion of the function x/(e^x-1).
+ *
+ *  @return the nth Bernoulli number (a rational number).
+ *  @exception range_error (argument must be integer >= 0) */
+numeric bernoulli(numeric const & nn)
+{
+    if (!nn.is_integer() || nn.is_negative())
+        throw (std::range_error("numeric::bernoulli(): argument must be integer >= 0"));
+    if (nn.is_zero())
+        return numONE();
+    if (!nn.compare(numONE()))
+        return numeric(-1,2);
+    if (nn.is_odd())
+        return numZERO();
+    // Until somebody has the Blues and comes up with a much better idea and
+    // codes it (preferably in CLN) we make this a remembering function which
+    // computes its results using the formula
+    // B(nn) == - 1/(nn+1) * sum_{k=0}^{nn-1}(binomial(nn+1,k)*B(k))
+    // whith B(0) == 1.
+    static vector<numeric> results;
+    static int highest_result = -1;
+    int n = nn.sub(numTWO()).div(numTWO()).to_int();
+    if (n <= highest_result)
+        return results[n];
+    if (results.capacity() < (unsigned)(n+1))
+        results.reserve(n+1);
+    
+    numeric tmp;  // used to store the sum
+    for (int i=highest_result+1; i<=n; ++i) {
+        // the first two elements:
+        tmp = numeric(-2*i-1,2);
+        // accumulate the remaining elements:
+        for (int j=0; j<i; ++j)
+            tmp += binomial(numeric(2*i+3),numeric(j*2+2))*results[j];
+        // divide by -(nn+1) and store result:
+        results.push_back(-tmp/numeric(2*i+3));
     }
     }
-    // return factorial(n).div(factorial(k).mul(factorial(n.sub(k))));
+    highest_result=n;
+    return results[n];
 }
 
 /** Absolute value. */
 }
 
 /** Absolute value. */
index 92755b3eb390978e263646552a15fec02a0a54de..b1f4871805b5d02d7f4d64dec61dc51d4d933e1a 100644 (file)
@@ -77,6 +77,7 @@ class numeric : public basic
     friend numeric asinh(numeric const & x);
     friend numeric acosh(numeric const & x);
     friend numeric atanh(numeric const & x);
     friend numeric asinh(numeric const & x);
     friend numeric acosh(numeric const & x);
     friend numeric atanh(numeric const & x);
+    friend numeric bernoulli(numeric const & n);
     friend numeric abs(numeric const & x);
     friend numeric mod(numeric const & a, numeric const & b);
     friend numeric smod(numeric const & a, numeric const & b);
     friend numeric abs(numeric const & x);
     friend numeric mod(numeric const & a, numeric const & b);
     friend numeric smod(numeric const & a, numeric const & b);
@@ -244,6 +245,7 @@ numeric psi(numeric const & n, numeric const & x);
 numeric factorial(numeric const & n);
 numeric doublefactorial(numeric const & n);
 numeric binomial(numeric const & n, numeric const & k);
 numeric factorial(numeric const & n);
 numeric doublefactorial(numeric const & n);
 numeric binomial(numeric const & n, numeric const & k);
+numeric bernoulli(numeric const & n);
 
 numeric abs(numeric const & x);
 numeric mod(numeric const & a, numeric const & b);
 
 numeric abs(numeric const & x);
 numeric mod(numeric const & a, numeric const & b);