This chapter is concerned with parameters which characterise certain aspects of the computing environment in which the NAG Library is implemented. They relate primarily to floating-point arithmetic, but also to integer arithmetic, the elementary functions and exception handling. The values of the parameters vary from one implementation of the Library to another, but within the context of a single implementation they are constants.
The parameters are intended for use primarily by other methods in the Library, but users of the Library may sometimes need to refer to them directly.

Syntax

C#
public static class X02
Visual Basic
Public NotInheritable Class X02
Visual C++
public ref class X02 abstract sealed
F#
[<AbstractClassAttribute>]
[<SealedAttribute>]
type X02 =  class end

Background to the Problems

Floating-point Arithmetic

A model of floating-point arithmetic

In order to characterise the important properties of floating-point arithmetic by means of a small number of parameters, NAG uses a simplified model of floating-point arithmetic. The parameters of the model can be chosen to provide a sufficiently close description of the behaviour of actual implementations of floating-point arithmetic, but not, in general, an exact description; actual implementations vary too much in the details of how numbers are represented or arithmetic operations are performed.
The model is based on that developed by Brown (1981), but differs in some respects. The essential features are summarised here.
The model is characterised by four integer parameters. The four integer parameters are:
b: the base
p: the precision (i.e., the number of significant base-b digits)
emin: the minimum exponent
emax: the maximum exponent
These parameters define a set of numerical values of the form:
f×be
where the exponent e must lie in the range [emin,emax], and the fraction f (also called the mantissa or significand) lies in the range 1/b,1, and may be written
f=0.f1f2fp
Thus f is a p-digit fraction to the base b; the fi are the base-b digits of the fraction: they are integers in the range 0 to b-1, and the leading digit f1 must not be zero.
The set of values so defined (together with zero) are called model numbers. For example, if b=10, p=5, emin=-99 and emax=+99, then a typical model number is 0.12345×1067.
The model numbers must obey certain rules for the computed results of the following basic arithmetic operations: addition, subtraction, multiplication, negation, absolute value, and comparisons: the computed result must be the nearest model number to the exact result (assuming that overflow or underflow does not occur); if the exact result is midway between two model numbers, then it may be rounded either way.
For division and square root, this latter rule is relaxed: the computed result may also be one of the next adjacent model numbers on either side of the permitted values just stated.
On many machines, the full set of representable floating-point numbers conforms to the rules of the model with appropriate values of b, p, emin and emax. For machines supporting IEEE binary double precision arithmetic:
b=2p=53emin=-1021emax=1024.
(Note:  the model used here differs from that described in Brown (1981) in the following respect: square-root is treated, like division, as a weakly supported operator.)

Derived parameters of floating-point arithmetic

Most numerical algorithms require access, not to the basic parameters of the model, but to certain derived values, of which the most important are:
 the machine precision ε:=12×b1-p
 the smallest positive model number:=bemin-1
 the largest positive model number:=1-b-p×bemax
It is important to note that the machine precision defined here differs from that defined by ISO (1997).
Two additional derived values are used in the NAG Library. Their definitions depend not only on the properties of the basic arithmetic operations just considered, but also on properties of some of the elementary functions. We define the safe range parameter to be the smallest positive model number z such that for any x in the range z,1/z the following can be computed without undue loss of accuracy, overflow, underflow or other error:
  • -x
  • 1/x
  • -1/x
  • x
  • logx
  • explogx
  • ylogx/logy for any y 
In a similar fashion we define the safe range parameter for complex arithmetic as the smallest positive model number z such that for any x in the range [z,1/z] the following can be computed without any undue loss of accuracy, overflow, underflow or other error:
  • -w
  • 1/w
  • -1/w
  • w
  • logw
  • explogw
  • ylogw/logy for any y 
  • w
where w is any of x, ix, x+ix, 1/x, i/x, 1/x+i/x, and i is the square root of -1.
This parameter was introduced to take account of the quality of complex arithmetic on the machine. On machines with well implemented complex arithmetic, its value will differ from that of the real safe range parameter by a small multiplying factor less than 10. For poorly implemented complex arithmetic this factor may be larger by many orders of magnitude.

Other Aspects of the Computing Environment

No attempt has been made to characterise comprehensively any other aspects of the computing environment. The other functions in this chapter provide specific information that is occasionally required by methods in the Library.

Recommendations on Choice and Use of Available Methods

Derived parameters of model of floating-point arithmetic, 
    largest positive model number x02al
    machine precision x02aj
    safe range x02am
    smallest positive model number x02ak
Largest representable integer x02bb
Maximum number of decimal digits that can be represented x02be
Parameters of model of floating-point arithmetic, 
    b x02bh

References

Brown W S (1981) A simple but realistic model of floating-point computation ACM Trans. Math. Software 7 445–480
ISO (1997) ISO Fortran 95 programming language (ISO/IEC 1539–1:1997)

Inheritance Hierarchy

System..::..Object
  NagLibrary..::..X02

See Also