S22BBF (PDF version)
S Chapter Contents
S Chapter Introduction
NAG Library Manual

NAG Library Routine Document

S22BBF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

S22BBF returns a value for the confluent hypergeometric function F 1 1 a;b;x , with real parameters a and b and real argument x. The solution is returned in the scaled form F 1 1 a;b;x = mf × 2ms . This function is sometimes also known as Kummer's function Ma,b,x.

2  Specification

SUBROUTINE S22BBF ( ANI, ADR, BNI, BDR, X, FRM, SCM, IFAIL)
INTEGER  SCM, IFAIL
REAL (KIND=nag_wp)  ANI, ADR, BNI, BDR, X, FRM

3  Description

S22BBF returns a value for the confluent hypergeometric function F1 1 a;b;x , with real parameters a and b and real argument x, in the scaled form F1 1 a;b;x = mf × 2 ms , where mf is the real scaled component and ms is the integer power of two scaling. This function is unbounded or not uniquely defined for b equal to zero or a negative integer.
The confluent hypergeometric function is defined by the confluent series,
F1 1 a;b;x = Ma,b,x = s=0 as xs bs s! = 1 + a b x + aa+1 bb+1 2! x2 +  
where as = 1 a a+1 a+2 a+s-1  is the rising factorial of a . Ma,b,x  is a solution to the second order ODE (Kummer's Equation):
x d2M dx2 + b-x dM dx - a M = 0 . (1)
Given the parameters and argument a,b,x , this routine determines a set of safe values αi,βi,ζi i2  and selects an appropriate algorithm to accurately evaluate the functions Mi αi,βi,ζi . The result is then used to construct the solution to the original problem Ma,b,x  using, where necessary, recurrence relations and/or continuation.
For improved precision in the final result, this routine accepts a and b split into an integral and a decimal fractional component. Specifically a=ai+ar, where ar0.5 and ai=a-ar is integral. b is similarly deconstructed.
Additionally, an artificial bound, arbnd is placed on the magnitudes of ai, bi and x to minimize the occurrence of overflow in internal calculations. arbnd = 0.0001 × Imax , where Imax=X02BBF. It should, however, not be assumed that this routine will produce an accurate result for all values of ai, bi and x satisfying this criterion.
Please consult the NIST Digital Library of Mathematical Functions or the companion (2010) for a detailed discussion of the confluent hypergeometric function including special cases, transformations, relations and asymptotic approximations.

4  References

NIST Handbook of Mathematical Functions (2010) (eds F W J Olver, D W Lozier, R F Boisvert, C W Clark) Cambridge University Press
Pearson J (2009) Computation of hypergeometric functions MSc Dissertation, Mathematical Institute, University of Oxford

5  Parameters

1:     ANI – REAL (KIND=nag_wp)Input
On entry: ai, the nearest integer to a, satisfying ai = a-ar.
Constraints:
  • ANI=ANI;
  • ANIarbnd.
2:     ADR – REAL (KIND=nag_wp)Input
On entry: ar, the signed decimal remainder satisfying ar = a-ai  and ar 0.5.
Constraint: ADR0.5.
Note: if ADR<100.0ε, ar=0.0 will be used, where ε is the machine precision as returned by X02AJF.
3:     BNI – REAL (KIND=nag_wp)Input
On entry: bi, the nearest integer to b, satisfying bi=b-br.
Constraints:
  • BNI=BNI;
  • BNIarbnd;
  • if BDR=0.0, BNI>0.
4:     BDR – REAL (KIND=nag_wp)Input
On entry: br, the signed decimal remainder satisfying br = b-bi and br 0.5.
Constraint: BDR0.5.
Note: if BDR-ADR<100.0ε, ar=br will be used, where ε is the machine precision as returned by X02AJF.
5:     X – REAL (KIND=nag_wp)Input
On entry: the argument x of the function.
Constraint: Xarbnd.
6:     FRM – REAL (KIND=nag_wp)Output
On exit: mf, the scaled real component of the solution satisfying mf=Ma,b,x×2-ms.
Note: if overflow occurs upon completion, as indicated by IFAIL=2, the value of mf returned may still be correct. If overflow occurs in a subcalculation, as indicated by IFAIL=5, this should not be assumed.
7:     SCM – INTEGEROutput
On exit: ms, the scaling power of two, satisfying ms= log2 Ma,b,x mf .
Note: if overflow occurs upon completion, as indicated by IFAIL=2, then msImax, where Imax is the largest representable integer (see X02BBF). If overflow occurs during a subcalculation, as indicated by IFAIL=5, ms may or may not be greater than Imax. In either case, SCM=X02BBF will have been returned.
8:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
Underflow occurred during the evaluation of Ma,b,x.
The returned value may be inaccurate.
IFAIL=2
On completion, overflow occurred in the evaluation of Ma,b,x.
IFAIL=3
All approximations have completed, and the final residual estimate indicates some precision may have been lost.
Relative residual =value.
IFAIL=4
All approximations have completed, and the final residual estimate indicates no accuracy can be guaranteed.
Relative residual =value.
IFAIL=5
Overflow occurred in a subcalculation of Ma,b,x.
The answer may be completely incorrect.
IFAIL=11
On entry, ANI=value.
Constraint: ANIarbnd=value.
IFAIL=13
ANI is non-integral.
On entry, ANI=value.
Constraint: ANI=ANI.
IFAIL=21
On entry, ADR=value.
Constraint: ADR0.5.
IFAIL=31
On entry, BNI=value.
Constraint: BNIarbnd=value.
IFAIL=32
On entry, b=BNI+BDR=value.
Ma,b,x is undefined when b is zero or a negative integer.
IFAIL=33
BNI is non-integral.
On entry, BNI=value.
Constraint: BNI=BNI.
IFAIL=41
On entry, BDR=value.
Constraint: BDR0.5.
IFAIL=51
On entry, X=value.
Constraint: Xarbnd=value.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction for further information.

7  Accuracy

In general, if IFAIL=0, the value of M may be assumed accurate, with the possible loss of one or two decimal places. Assuming the result does not under or overflow, an error estimate res is made internally using equation (1). If the magnitude of res is sufficiently large a nonzero IFAIL will be returned. Specifically,
IFAIL=0 res1000ε
IFAIL=3 1000ε<res0.1
IFAIL=4 res>0.1
A further estimate of the residual can be constructed using equation (1), and the differential identity,
d Ma,b,x dx = ab M a+1,b+1,x , d2 Ma,b,x dx2 = aa+1 bb+1 M a+2,b+2,x .  
This estimate is however dependent upon the error involved in approximating M a+1,b+1,x  and M a+2,b+2,x .

8  Parallelism and Performance

S22BBF is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
S22BBF makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9  Further Comments

The values of mf and ms are implementation dependent. In most cases, if F 1 1 a;b;x = 0 , m f = 0 and m s = 0 will be returned, and if F 1 1 a;b;x = 0  is finite, the fractional component will be bound by 0.5 m f < 1, with m s  chosen accordingly.
The values returned in FRM (mf) and SCM (ms) may be used to explicitly evaluate Ma,b,x, and may also be used to evaluate products and ratios of multiple values of M as follows,
Ma,b,x = mf × 2ms M a1,b1,x1 × M a2,b2,x2 = mf1 × mf2 × 2 ms1 + ms2 M a1,b1,x1 M a2,b2,x2 = mf1 mf2 × 2 ms1 - ms2 ln M a,b,x = lnmf + ms × ln2 .  

10  Example

This example evaluates the confluent hypergeometric function at two points in scaled form using S22BBF, and subsequently calculates their product and ratio without having to explicitly construct M.

10.1  Program Text

Program Text (s22bbfe.f90)

10.2  Program Data

None.

10.3  Program Results

Program Results (s22bbfe.r)


S22BBF (PDF version)
S Chapter Contents
S Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2015