NAG Library Chapter Introduction
S (specfun)
Approximations of Special Functions
1
Scope of the Chapter
This chapter is concerned with the provision of some commonly occurring physical and mathematical functions.
2
Background to the Problems
The majority of the routines in this chapter approximate real-valued functions of a single real argument, and the techniques involved are described in
Section 2.1. In addition the chapter contains routines for elliptic integrals (see
Section 2.2), Bessel and Airy functions of a complex argument (see
Section 2.3), complementary error function of a complex argument, hypergeometric functions and various option pricing routines for use in financial applications.
2.1
Functions of a Single Real Argument
Most of the routines provided for functions of a single real argument have been based on truncated Chebyshev expansions. This method of approximation was adopted as a compromise between the conflicting requirements of efficiency and ease of implementation on many different machine ranges. For details of the reasons behind this choice and the production and testing procedures followed in constructing this chapter see
Schonfelder (1976).
Basically, if the function to be approximated is
, then for
an approximation of the form
is used (
denotes, according to the usual convention, a summation in which the first term is halved), where
is some suitable auxiliary function which extracts any singularities, asymptotes and, if possible, zeros of the function in the range in question and
is a mapping of the general range
to the specific range [
] required by the Chebyshev polynomials,
. For a detailed description of the properties of the Chebyshev polynomials see
Clenshaw (1962) and
Fox and Parker (1968).
The essential property of these polynomials for the purposes of function approximation is that
oscillates between
and it takes its extreme values
times in the interval [
]. Therefore, provided the coefficients
decrease in magnitude sufficiently rapidly the error made by truncating the Chebyshev expansion after
terms is approximately given by
That is, the error oscillates between
and takes its extreme value
times in the interval in question. Now this is just the condition that the approximation be a minimax representation, one which minimizes the maximum error. By suitable choice of the interval, [
], the auxiliary function,
, and the mapping of the independent variable,
, it is almost always possible to obtain a Chebyshev expansion with rapid convergence and hence truncations that provide near minimax polynomial approximations to the required function. The difference between the true minimax polynomial and the truncated Chebyshev expansion is seldom sufficiently great enough to be of significance.
The evaluation of the Chebyshev expansions follows one of two methods. The first and most efficient, and hence the most commonly used, works with the equivalent simple polynomial. The second method, which is used on the few occasions when the first method proves to be unstable, is based directly on the truncated Chebyshev series, and uses backward recursion to evaluate the sum. For the first method, a suitably truncated Chebyshev expansion (truncation is chosen so that the error is less than the
machine precision) is converted to the equivalent simple polynomial. That is, we evaluate the set of coefficients
such that
The polynomial can then be evaluated by the efficient Horner's method of nested multiplications,
This method of evaluation results in efficient routines but for some expansions there is considerable loss of accuracy due to cancellation effects. In these cases the second method is used. It is well known that if
then
and this is always stable. This method is most efficiently implemented by using three variables cyclically and explicitly constructing the recursion.
That is,
The auxiliary functions used are normally functions compounded of simple polynomial (usually linear) factors extracting zeros, and the primary compiler-provided functions, sin, cos, ln, exp, sqrt, which extract singularities and/or asymptotes or in some cases basic oscillatory behaviour, leaving a smooth well-behaved function to be approximated by the Chebyshev expansion which can therefore be rapidly convergent.
The mappings of [] to [] used range from simple linear mappings to the case when is infinite, and considerable improvement in convergence can be obtained by use of a bilinear form of mapping. Another common form of mapping is used when the function is even; that is, it involves only even powers in its expansion. In this case an approximation over the whole interval [] can be provided using a mapping . This embodies the evenness property but the expansion in involves all powers and hence removes the necessity of working with an expansion with half its coefficients zero.
For many of the routines an analysis of the error in principle is given, namely, if
and
are the absolute errors in function and argument and
and
are the corresponding relative errors, then
If we ignore errors that arise in the argument of the function by propagation of data errors, etc., and consider only those errors that result from the fact that a real number is being represented in the computer in floating-point form with finite precision, then
is bounded and this bound is independent of the magnitude of
. For example, on an
-digit machine
(This of course implies that the absolute error
is also bounded but the bound is now dependent on
.) However, because of this the last two relations above are probably of more interest. If possible the relative error propagation is discussed; that is, the behaviour of the error amplification factor
is described, but in some cases, such as near zeros of the function which cannot be extracted explicitly, absolute error in the result is the quantity of significance and here the factor
is described. In general, testing of the functions has shown that their error behaviour follows fairly well these theoretical error behaviours. In regions where the error amplification factors are less than or of the order of one, the errors are slightly larger than the above predictions. The errors are here limited largely by the finite precision of arithmetic in the machine, but
is normally no more than a few times greater than the bound on
. In regions where the amplification factors are large, of order ten or greater, the theoretical analysis gives a good measure of the accuracy obtainable.
It should be noted that the definitions and notations used for the functions in this chapter are all taken from
Abramowitz and Stegun (1972). You are strongly recommended to consult this book for details before using the routines in this chapter. An excellent on-line reference for special functions is the
NIST Digital Library of Mathematical Functions.
2.2
Approximations to Elliptic Integrals
Four functions provided here are symmetrised variants of the classical (Legendre) elliptic integrals. These alternative definitions have been suggested by
Carlson (1965),
Carlson (1977b) and
Carlson (1977a) and he also developed the basic algorithms used in this chapter.
The symmetrised elliptic integral of the first kind is represented by
where
and at most one may be equal to zero.
The normalization factor,
, is chosen so as to make
If any two of the variables are equal,
degenerates into the second function
where the argument restrictions are now
and
.
This function is related to the logarithm or inverse hyperbolic functions if , and to the inverse circular functions if .
The symmetrised elliptic integral of the second kind is defined by
with
,
and
, but only one of
or
may be zero.
The function is a degenerate special case of the symmetrised elliptic integral of the third kind
with
and
with at most one equality holding. Thus
. The normalization of both these functions is chosen so that
The algorithms used for all these functions are based on duplication theorems. These allow a recursion system to be established which constructs a new set of arguments from the old using a combination of arithmetic and geometric means. The value of the function at the original arguments can then be simply related to the value at the new arguments. These recursive reductions are used until the arguments differ from the mean by an amount small enough for a Taylor series about the mean to give sufficient accuracy when retaining terms of order less than six. Each step of the recurrences reduces the difference from the mean by a factor of four, and as the truncation error is of order six, the truncation error goes like
, where
is the number of iterations.
The above forms can be related to the more traditional canonical forms (see Section 17.2 of
Abramowitz and Stegun (1972)), as follows.
If we write , where , we have
the classical elliptic integral of the first kind:
the classical elliptic integral of the second kind:
the classical elliptic integral of the third kind:
Also the classical complete elliptic integral of the first kind:
the classical complete elliptic integral of the second kind:
For convenience,
Chapter S contains routines to evaluate classical
and symmetrised elliptic integrals.
2.3
Bessel and Airy Functions of a Complex Argument
The routines for Bessel and Airy functions of a real argument are based on Chebyshev expansions, as described in
Section 2.1. The routines provided for functions of a complex argument, however, use different methods. These routines relate all functions to the modified Bessel functions
and
computed in the right-half complex plane, including their analytic continuations.
and
are computed by different methods according to the values of
and
. The methods include power series, asymptotic expansions and Wronskian evaluations. The relations between functions are based on well known formulae (see
Abramowitz and Stegun (1972)).
2.4
Option Pricing Routines
The option pricing routines evaluate the closed form solutions or approximations to the equations that define mathematical models for the prices of selected financial option contracts. These solutions can be viewed as special functions determined by the underlying equations. The terminology associated with these routines arises from their setting in financial markets and is briefly outlined below. See
Joshi (2003) for a comprehensive introduction to this subject. An option is a contract which gives the holder the right, but not the obligation, to buy (if it is a call) or sell (if it is a put) a particular asset,
. A European option can be exercised only at the specified expiry time,
, while an American option can be exercised at any time up to
. For Asian options the average underlying price over a pre-set time period determines the payoff.
The asset is bought (if a call) or sold (if a put) at a pre-specified strike price . Thus, an option contract has a payoff to the holder of for a call or , for a put, which depends on whether the asset price at the time of exercise is above (call) or below (put) the strike, . If at any moment in time a contract is currently showing a theoretical profit then it is deemed ‘in-the-money’; otherwise it is deemed ‘out-of-the-money’.
The option contract itself therefore has a value and, in many cases, can be traded in markets. Mathematical models (e.g., Black–Scholes, Merton, Vasicek, Hull–White, Heston, CEV, SABR, …) give theoretical prices for particular option contracts using a number of assumptions about the behaviour of financial markets. Typically the price
of the underlying asset at time
is modelled as the solution of a stochastic differential equation (SDE). Depending on the complexity of this equation, the model may admit closed form formulae for the prices of various options. The options described in this chapter introduction are detailed below. We let
denote expectation with respect to the risk neutral measure and we define
to be
on the set
and
otherwise.
– |
The price of a standard European call option is and the price of a standard European put option is . |
– |
For continuously averaged geometric Asian options define
Then the price of an Asian call option is and the price of an Asian put option is . |
– |
For a binary asset-or-nothing option the price of a call is and the price of a put is . |
– |
For a binary cash-or-nothing option the price of a call is and the price of a put is . |
– |
For a floating-strike lookback option the price of a call is and the price of a put is . |
– |
For an up-and-in barrier option with barrier level and cash rebate , set . Then the price of a call is
and the price of a put is
|
– |
For a down-and-in barrier option with barrier level and cash rebate , set . Then the price of a call is
and the price of a put is
|
– |
For an up-and-out barrier option with barrier level and cash rebate , set . Then the price of a call is
and the price of a put is
|
– |
For a down-and-out barrier option with barrier level and cash rebate , set . Then the price of a call is
and the price of a put is
|
– |
The price of an American call option is and the price of an American put option is . Here denotes the essential supremum over all stopping times for the process which take values in . If is a Markov process, then the essential supremum may be replaced with the normal supremum. Note that if the asset pays no dividends then the price of an American call option is the same as a European call option. |
2.4.1
The Black–Scholes Model
The best known model of asset behaviour is the Black–Scholes model. Under the risk-neutral measure, the asset is governed by the SDE
where
is the continuously compounded risk-free interest rate,
is the continuously compounded dividend yield,
is the volatility of log-asset returns (i.e.,
) and
is a standard Brownian motion. Under this model, the price of any option
must solve the Black–Scholes PDE
at all times before the option is exercised. This PDE admits a closed form solution for a number of different options.
2.4.2
The Black–Scholes Model with Term Structure
The simplest extension of the Black–Scholes model is to allow
,
and
to be deterministic functions of time so that
In this case one can still obtain closed form solutions for some options, e.g., European calls and puts.
2.4.3
The Heston Model
Heston (1993) proposed a stochastic volatility model with the following form
where
and
are two Brownian motions with quadratic covariation given by
. In this model
and
are the continuously compounded risk free interest rate and dividend rate respectively,
is the stochastic volatility process,
is the long term mean of volatility,
is the rate of mean reversion, and
is the volatility of volatility. The prices of European call and put options in the Heston model are available in closed form up to the evaluation of an integral transform (see
Lewis (2000)).
2.4.4
The Heston Model with Term Structure
The Heston model can be extended by allowing the coefficients to become deterministic functions of time:
where
and
are two Brownian motions with quadratic covariation given by
. When the coefficients are restricted to being piecewise constant functions of time, the prices of European call and put options can be calculated as described in
Elices (2008) and
Mikhailov and Nögel (2003).
2.5
Hypergeometric Functions
The confluent hypergeometric function (or ) requires a number of techniques to approximate it over the whole parameter space and for all argument values. For well within the unit circle (where say), and for relatively small parameter values, the function can be well approximated by Taylor expansions, continued fractions or through the solution of the related ordinary differential equation by an explicit, adaptive integrator. For values of , one of several transformations can be performed (depending on the value of ) to reformulate the problem in terms of a new argument such that . If one or more of the parameters is relatively large (e.g., ) then recurrence relations can be used in combination to reformulate the problem in terms of parameter values of small size (e.g., ).
Approximations to the hypergeometric functions can therefore require all of the above techniques in sequence: a transformation to get an argument well inside the unit circle, a combination of recurrence relations to reduce the parameter sizes, and the approximation of the resulting hypergeometric function by one of a set of approximation techniques. Similar complications arise in the computation of the Gaussian Hypergeometric Function .
All the techniques described above are based on those described in
Pearson (2009).
3
Recommendations on Choice and Use of Available Routines
3.1
Vectorized Routine Variants
Many routines in
Chapter S which compute functions of a single real argument have variants which operate on vectors of arguments. For example,
s18aef computes the value of the
Bessel function for a single argument, and
s18asf computes the same function for multiple arguments. In general it should be more efficient to use vectorized routines where possible, though to some extent this will depend on the environment from which you call the routines. See
Section 4 for a complete list of vectorized routines.
3.2
Elliptic Integrals
IMPORTANT ADVICE: users who encounter elliptic integrals in the course of their work are strongly recommended to look at transforming their analysis directly to one of the Carlson forms, rather than to the traditional canonical Legendre forms. In general, the extra symmetry of the Carlson forms is likely to simplify the analysis, and these symmetric forms are much more stable to calculate. Note, however, that this transformation may eventually lead to the following combination of Carlson forms:
with possibly
, which makes
and
undefined, although the combination itself remains defined and
. The routine
s21bjf returning the Legendre form
through this combination makes provision for such a case, and allows
.
The routine
s21baf for
is largely included as an auxiliary to the other routines for elliptic integrals. This integral essentially calculates elementary functions, e.g.,
In general this method of calculating these elementary functions is not recommended as there are usually much more efficient specific routines available in the Library. However,
s21baf may be used, for example, to compute
when
is close to
, without the loss of significant figures that occurs when
and
are computed separately.
3.3
Bessel and Airy Functions
For computing the Bessel functions , , and where is real and , special routines are provided, which are much faster than the more general routines that allow a complex argument and arbitrary real . Similarly, special routines are provided for computing the Airy functions and their derivatives , , , for a real argument which are much faster than the routines for complex arguments.
3.4
Option Pricing Functions
For the Black–Scholes model, functions are provided to compute prices and derivatives (Greeks) of all the European options listed in
Section 2.4. Prices for American call and put options can be obtained by calling
s30qcf which uses the
Bjerksund and Stensland (2002) approximation to the theoretical value. For the Black–Scholes model with term structure, prices for European call and put options can be obtained by calling
d03ndf. The prices of European call and put options in the standard Heston model can be obtained by calling
s30naf, while
s30ncf returns the same prices in the Heston model with term structure.
3.5
Hypergeometric Functions
Two routines are provided for the confluent hypergeometric function
. Both return values for
where parameters
and
, and argument
, are all real, but one variant works in a scaled form designed to avoid unnecessary loss of precision. The unscaled routine
s22baf is easier to use and should be chosen in the first instance, changing to the scaled routine
s22bbf only if problems are encountered. Similar considerations apply to the Gaussian hypergeometric function routines
s22bef and
s22bff.
4
Functionality Index
Ai or Ai′, complex argument, optionally scaled | | s17dgf |
Bi or Bi′, complex argument, optionally scaled | | s17dhf |
inverse circular cosine | | s09abf |
inverse hyperbolic cosine | | s11acf |
inverse hyperbolic sine | | s11abf |
inverse hyperbolic tangent | | s11aaf |
Iν, complex argument, optionally scaled | | s18def |
Jα ± n(z), complex argument | | s18gkf |
Jν, complex argument, optionally scaled | | s17def |
Kν, complex argument, optionally scaled | | s18dcf |
Yν, complex argument, optionally scaled | | s17dcf |
Complement of the Cumulative Normal distribution | | s15acf |
Complement of the Error function, | | |
complex argument, scaled | | s15ddf |
Cumulative Normal distribution function | | s15abf |
Digamma function, scaled | | s14adf |
Elliptic functions, Jacobian, sn, cn, dn, | | |
of 2nd kind, F(z , k′ , a , b) | | s21daf |
complete of 1st kind, K(m) | | s21bhf |
complete of 2nd kind, E (m) | | s21bjf |
of 3rd kind, Π (n ; ϕ ∣ m) | | s21bgf |
degenerate of 1st kind, RC | | s21baf |
complex argument, scaled | | s15ddf |
Generalized factorial function | | s14aaf |
Hankel function Hν(1) or Hν(2), | | |
complex argument, optionally scaled | | s17dlf |
Hypergeometric functions, | | |
1F1
(a ; b ; x)
, confluent, real argument | | s22baf |
1F1(a ; b ; x), confluent, real argument, scaled form | | s22bbf |
2F1
(
a , b ;
c ; x
)
, Gauss, real argument | | s22bef |
2F1
(
a , b ;
c ; x
)
, Gauss, real argument, scaled form | | s22bff |
Jacobian theta functions θk(x , q), | | |
Legendre functions of 1st kind Pnm(x), Pnm(x) | | s22aaf |
Logarithm of beta function, | | |
Logarithm of gamma function, | | |
Modified Struve function, | | |
American option, Bjerksund and Stensland option price | | s30qcf |
Asian option, geometric continuous average rate price | | s30saf |
Asian option, geometric continuous average rate price with Greeks | | s30sbf |
binary asset-or-nothing option price | | s30ccf |
binary asset-or-nothing option price with Greeks | | s30cdf |
binary cash-or-nothing option price | | s30caf |
binary cash-or-nothing option price with Greeks | | s30cbf |
Black–Scholes–Merton option price | | s30aaf |
Black–Scholes–Merton option price with Greeks | | s30abf |
European option, option prices, using Merton jump-diffusion model | | s30jaf |
European option, option price with Greeks, using Merton jump-diffusion model | | s30jbf |
floating-strike lookback option price | | s30baf |
floating-strike lookback option price with Greeks | | s30bbf |
Heston's model option price | | s30naf |
Heston's model option price with Greeks | | s30nbf |
Heston's model with term structure | | s30ncf |
standard barrier option price | | s30faf |
psi function derivatives, scaled | | s14adf |
Scaled modified Bessel function(s), | | |
e − (x)I0(x), real argument, | | |
e − (x)I1(x), real argument, | | |
ex K0 (x), real argument, | | |
ex K1 (x), real argument, | | |
Trigamma function, scaled | | s14adf |
Zeros of Bessel functions Jα(x), Jα′(x), Yα(x), Yα′(x), | | |
5
Auxiliary Routines Associated with Library Routine Arguments
None.
6
Routines Withdrawn or Scheduled for Withdrawal
None.
7
References
Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Bjerksund P and Stensland G (2002) Closed form valuation of American options
Discussion Paper 2002/09 NHH Bergen Norway http://www.nhh.no/
Carlson B C (1965) On computing elliptic integrals and functions J. Math. Phys. 44 36–51
Carlson B C (1977a) Special Functions of Applied Mathematics Academic Press
Carlson B C (1977b) Elliptic integrals of the first kind SIAM J. Math. Anal. 8 231–242
Clenshaw C W (1962) Chebyshev Series for Mathematical Functions Mathematical tables HMSO
Elices A (2008) Models with time-dependent parameters using transform methods: application to Heston’s model arXiv:0708.2020v2
Fox L and Parker I B (1968) Chebyshev Polynomials in Numerical Analysis Oxford University Press
Haug E G (2007) The Complete Guide to Option Pricing Formulas (2nd Edition) McGraw-Hill
Heston S (1993) A closed-form solution for options with stochastic volatility with applications to bond and currency options Review of Financial Studies 6 327–343
Joshi M S (2003) The Concepts and Practice of Mathematical Finance Cambridge University Press
Lewis A L (2000) Option valuation under stochastic volatility Finance Press, USA
Mikhailov S and Nögel U (2003) Heston’s Stochastic Volatility Model Implementation, Calibration and Some Extensions Wilmott Magazine July/August 74–79
Pearson J (2009) Computation of hypergeometric functions MSc Dissertation, Mathematical Institute, University of Oxford
Schonfelder J L (1976) The production of special function routines for a multi-machine library Softw. Pract. Exper. 6(1)