NAG FL Interface
X02 (Machine)
Machine Constants

Settings help

FL Name Style:


FL Specification Language:


1 Scope of the Chapter

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 routines in the Library, but users of the Library may sometimes need to refer to them directly.

2 Background to the Problems

2.1 Floating-point Arithmetic

2.1.1 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 = 2 p = 53 emin = −1021 emax = 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.)

2.1.2 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 Fortran 95 (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:
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: 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.

2.2 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 routines in the Library.

3 Recommendations on Choice and Use of Available Routines

Derived parameters of model of floating-point arithmetic,  
largest positive model number   x02alf
machine precision   x02ajf
safe range   x02amf
safe range of complex floating-point arithmetic   x02anf
smallest positive model number   x02akf
Largest permissible argument for SIN and COS   x02ahf
Largest representable integer   x02bbf
Maximum number of decimal digits that can be represented   x02bef
Parameters of model of floating-point arithmetic,  
b   x02bhf
emax   x02blf
emin   x02bkf
p   x02bjf

4 Withdrawn or Deprecated Routines

The following lists all those routines that have been withdrawn since Mark 24 of the Library or are in the Library, but deprecated.
Routine Status Replacement Routine(s)
x02daf Withdrawn at Mark 24 No longer required
x02djf Withdrawn at Mark 24 No longer required

5 References

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