Efficient evaluation of hypergeometric functions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T08:42:50Z http://stackoverflow.com/feeds/question/478308 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/478308/efficient-evaluation-of-hypergeometric-functions 4 Efficient evaluation of hypergeometric functions John D. Cook 2009-01-25T21:16:21Z 2009-01-29T08:14:45Z <p>Does anyone have experience with algorithms for evaluating hypergeometric functions? I would be interested in general references, but I'll describe my particular problem in case someone has dealt with it.</p> <p>My specific problem is evaluating a function of the form 3F2(a, b, 1; c, d; 1) where a, b, c, and d are all positive reals and c+d > a+b+1. There are many special cases that have a closed-form formula, but as far as I know there are no such formulas in general. The power series centered at zero converges at 1, but very slowly; the ratio of consecutive coefficients goes to 1 in the limit. Maybe something like Aitken acceleration would help?</p> http://stackoverflow.com/questions/478308/efficient-evaluation-of-hypergeometric-functions/478486#478486 1 Answer by ShreevatsaR for Efficient evaluation of hypergeometric functions ShreevatsaR 2009-01-25T23:07:30Z 2009-01-25T23:07:30Z <p>Is it correct that you want to sum a series where you know the ratio of successive terms and it is a rational function?</p> <p>I think <a href="http://en.wikipedia.org/wiki/Gosper%27s_algorithm" rel="nofollow">Gosper's algorithm</a> and the rest of the tools for proving <a href="http://en.wikipedia.org/wiki/Hypergeometric_identities" rel="nofollow">hypergeometric identities</a> (and finding them) do exactly this, right? (See Wilf and Zielberger's <a href="http://www.math.upenn.edu/~wilf/AeqB.html" rel="nofollow">A=B book online.</a>)</p> http://stackoverflow.com/questions/478308/efficient-evaluation-of-hypergeometric-functions/490853#490853 1 Answer by fredrikj for Efficient evaluation of hypergeometric functions fredrikj 2009-01-29T08:14:45Z 2009-01-29T08:14:45Z <p>I tested Aitken acceleration and it does not seem to help for this problem (nor does Richardson extrapolation). This probably means Pade approximation doesn't work either. I might have done something wrong though, so by all means try it for yourself.</p> <p>I can think of two approaches.</p> <p>One is to evaluate the series at some point such as z = 0.5 where convergence is rapid to get an initial value and then step forward to z = 1 by plugging the <a href="http://mathworld.wolfram.com/GeneralizedHypergeometricDifferentialEquation.html" rel="nofollow">hypergeometric differential equation</a> into an ODE solver. I don't know how well this works in practice; it might not, due to z = 1 being a singularity (if I recall correctly).</p> <p>The second is to use the definition of 3F2 in terms of the <a href="http://mathworld.wolfram.com/MeijerG-Function.html" rel="nofollow">Meijer G-function</a>. The contour integral defining the Meijer G-function can be evaluated numerically by applying Gaussian or doubly-exponential quadrature to segments of the contour. This is not terribly efficient, but it should work, and it should scale to relatively high precision.</p>