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

NAG Library Routine Document

S14AEF

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

S14AEF returns the value of the kth derivative of the psi function ψx for real x and k=0,1,,6, via the function name.

2  Specification

FUNCTION S14AEF ( X, K, IFAIL)
REAL (KIND=nag_wp) S14AEF
INTEGER  K, IFAIL
REAL (KIND=nag_wp)  X

3  Description

S14AEF evaluates an approximation to the kth derivative of the psi function ψx given by
ψ k x=dkdxk ψx=dkdxk ddx logeΓx ,
where x is real with x0,-1,-2, and k=0,1,,6. For negative noninteger values of x, the recurrence relationship
ψ k x+1=ψ k x+dkdxk 1x
is used. The value of -1k+1ψ k x k!  is obtained by a call to S14ADF, which is based on the routine PSIFN in Amos (1983).
Note that ψ k x is also known as the polygamma function. Specifically, ψ 0 x is often referred to as the digamma function and ψ 1 x as the trigamma function in the literature. Further details can be found in Abramowitz and Stegun (1972).

4  References

Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Amos D E (1983) Algorithm 610: A portable FORTRAN subroutine for derivatives of the psi function ACM Trans. Math. Software 9 494–502

5  Parameters

1:     X – REAL (KIND=nag_wp)Input
On entry: the argument x of the function.
Constraint: X must not be ‘too close’ (see Section 6) to a non-positive integer.
2:     K – INTEGERInput
On entry: the function ψkx to be evaluated.
Constraint: 0K6.
3:     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
On entry,K<0,
orK>6,
orX is ‘too close’ to a non-positive integer. That is, abs X - nintX < machine precision × nintabsX .
IFAIL=2
The evaluation has been abandoned due to the likelihood of underflow. The result is returned as zero.
IFAIL=3
The evaluation has been abandoned due to the likelihood of overflow. The result is returned as zero.

7  Accuracy

All constants in S14ADF are given to approximately 18 digits of precision. If t denotes the number of digits of precision in the floating point arithmetic being used, then clearly the maximum number in the results obtained is limited by p=mint,18. Empirical tests by Amos (1983) have shown that the maximum relative error is a loss of approximately two decimal places of precision. Further tests with the function -ψ 0 x have shown somewhat improved accuracy, except at points near the positive zero of ψ 0 x at x=1.46, where only absolute accuracy can be obtained.

8  Further Comments

None.

9  Example

This example evaluates ψ 2 x at x=2.5, and prints the results.

9.1  Program Text

Program Text (s14aefe.f90)

9.2  Program Data

Program Data (s14aefe.d)

9.3  Program Results

Program Results (s14aefe.r)


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

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