Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Trigamma

Synopsis
#include <boost/math/special_functions/trigamma.hpp>
namespace boost{ namespace math{

template <class T>
calculated-result-type trigamma(T z);

template <class T, class Policy>
calculated-result-type trigamma(T z, const Policy&);

}} // namespaces
Description

Returns the trigamma function of x. Trigamma is defined as the derivative of the digamma function:

The final Policy argument is optional and can be used to control the behaviour of the function: how it handles errors, what level of precision to use etc. Refer to the policy documentation for more details.

The return type of this function is computed using the result type calculation rules: the result is of type double when T is an integer type, and type T otherwise.

Accuracy

The following table shows the peak errors (in units of epsilon) found on various platforms with various floating point types. Unless otherwise specified any floating point type that is narrower than the one shown will have effectively zero error.

Significand Size

Platform and Compiler

Random Values

53

Win32 Visual C++ 12

Peak=1.0 Mean=0.4

64

Win64 Mingw GCC

Peak=1.4 Mean=0.4

113

Win64 Mingw GCC __float128

Peak=1.0 Mean=0.5

As shown above, error rates are generally very low for built in types. For multiprecision types, error rates are typically in the order of a few epsilon.

Testing

Testing is against Mathematica generated spot values to 35 digit precision.

Implementation

The arbitrary precision version of this function simply calls polygamma.

For built in fixed precision types, negative arguments are first made positive via:

Then arguments in the range [0, 1) are shifted to >= 1 via:

Then evaluation is via one of a number of rational approximations, for small x these are of the form:

and for large x of the form:


PrevUpHomeNext