3 * Copyright (C) 2004 Free Software Foundation, Inc.
4 * Written by Jason H. Stover.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * Pr(X <= n) for a negative binomial random variable X, i.e.,
23 * the probability of n or fewer failuers before success k.
27 #include <gsl/gsl_math.h>
28 #include <gsl/gsl_errno.h>
29 #include <gsl/gsl_sf.h>
30 #include <gsl/gsl_cdf.h>
31 #include "gsl-extras.h"
34 * Pr (X <= n), i.e., the probability of n or fewer
35 * failures until the first success.
38 gslextras_cdf_geometric_P (const long n, const double p)
48 if(p > 1.0 || p < 0.0)
50 GSLEXTRAS_CDF_ERROR("p < 0 or p > 1",GSL_EDOM);
58 if( p < GSL_DBL_EPSILON )
61 * 1.0 - pow(q,a) will overflow, so use
66 term = exp(log(a) + log(p));
68 while ( term > GSL_DBL_MIN && i < m)
70 term = exp (sign * gsl_sf_lnchoose(m,i) + i * log(p));
78 P = 1.0 - pow ( q, a);
83 gslextras_cdf_geometric_Q ( const long n, const double p)
89 if(p > 1.0 || p < 0.0)
91 GSLEXTRAS_CDF_ERROR("p < 0 or p > 1",GSL_EDOM);