number
-- r7rs
Type complex
:
real
:
inexact-real
:
real-not-zero
:
real-not-inf
:
real-not-nan
:
inexact-complex
:
inexact-real
:
inexact-complex-not-inf
:
inexact-complex-not-nan
:
complex-not-zero
:
real-not-zero
:
complex-not-zero-not-nan
:
complex-not-inf
:
real-not-inf
:
complex-not-inf-not-nan
:
inexact-complex-not-inf
:
complex-not-nan
:
real-not-nan
:
complex-not-inf-not-nan
:
complex-not-zero-not-nan
:
inexact-complex-not-nan
:
inexact-number
:
inexact-complex
:
inexact-real
:
inexact-complex-not-inf
:
inexact-complex-not-nan
:
inexact-number-not-inf
:
number-nan
:
inexact-complex-not-inf
:
inexact-number-not-inf-not-nan
:
inexact-number-not-nan
:
number-inf
:
inexact-complex-not-nan
:
inexact-number-not-inf-not-nan
:
number-not-zero
:
complex-not-zero
:
real-not-zero
:
complex-not-zero-not-nan
:
number-not-zero-not-nan
:
complex-not-zero-not-nan
:
number-positive
:
number-negative
:
number-not-inf
:
complex-not-inf
:
real-not-inf
:
complex-not-inf-not-nan
:
inexact-complex-not-inf
:
number-not-inf-not-nan
:
exact-number
:
number-zero
:
complex-not-inf-not-nan
:
inexact-number-not-inf-not-nan
:
number-positive-or-zero-not-inf
:
number-zero
:
number-positive-not-inf
:
real-positive-or-zero-not-inf
:
number-negative-or-zero-not-inf
:
number-zero
:
number-negative-not-inf
:
real-negative-or-zero-not-inf
:
inexact-number-not-inf
:
number-nan
:
inexact-complex-not-inf
:
inexact-number-not-inf-not-nan
:
number-not-nan
:
complex-not-nan
:
real-not-nan
:
complex-not-inf-not-nan
:
complex-not-zero-not-nan
:
inexact-complex-not-nan
:
number-not-inf-not-nan
:
exact-number
:
number-zero
:
complex-not-inf-not-nan
:
inexact-number-not-inf-not-nan
:
number-not-zero-not-nan
:
complex-not-zero-not-nan
:
number-positive
:
number-negative
:
number-positive-or-zero
:
number-positive
:
number-positive-or-zero-not-inf
:
real-positive-or-zero
:
number-negative-or-zero
:
number-negative
:
number-negative-or-zero-not-inf
:
real-negative-or-zero
:
inexact-number-not-nan
:
number-inf
:
inexact-complex-not-nan
:
inexact-number-not-inf-not-nan
:
real
;rational
;integer
;exact-number
;exact-complex
;exact-real
;exact-rational
;exact-integer
;inexact-complex
;inexact-real
;inexact-rational
;inexact-integer
;number-zero
;complex-zero
;real-zero
;rational-zero
;integer-zero
;exact-integer-zero
;complex-not-zero
;real-not-zero
;rational-not-zero
;integer-not-zero
;exact-integer-not-zero
;integer-even
;integer-odd
;number-inf
;complex-inf
;real-inf
;number-nan
;complex-nan
;real-nan
;complex-not-inf
;real-not-inf
;complex-not-nan
;real-not-nan
;number-not-inf-not-nan
;complex-not-inf-not-nan
;real-not-inf-not-nan
;number-not-zero-not-nan
;complex-not-zero-not-nan
;real-not-zero-not-nan
;number-positive
;number-positive-not-inf
;real-positive
;real-positive-not-inf
;rational-positive
;integer-positive
;exact-integer-positive
;number-negative
;number-negative-not-inf
;real-negative
;real-negative-not-inf
;rational-negative
;integer-negative
;exact-integer-negative
;number-positive-or-zero
;number-positive-or-zero-not-inf
;real-positive-or-zero
;real-positive-or-zero-not-inf
;rational-positive-or-zero
;integer-positive-or-zero
;exact-integer-positive-or-zero
;number-negative-or-zero
;number-negative-or-zero-not-inf
;real-negative-or-zero
;real-negative-or-zero-not-inf
;rational-negative-or-zero
;integer-negative-or-zero
;exact-integer-negative-or-zero
;inexact-number-not-inf
;inexact-complex-not-inf
;inexact-real-not-inf
;inexact-number-not-nan
;inexact-complex-not-nan
;inexact-real-not-nan
;inexact-number-not-inf-not-nan
;inexact-complex-not-inf-not-nan
;inexact-real-not-inf-not-nan
;code-point-unicode
;code-point-ascii
;range-value
;range-offset
;range-start
;range-end
;range-length
;range-length-zero
;range-length-not-zero
;byte
;byte-ascii
;number?
;integer?
;real?
;rational?
;complex?
;exact?
;inexact?
;exact-integer?
;zero?
;=
;+
;-
;*
;/
;expt
;square
;inexact
;sqrt
;exp
;log
;sin
;cos
;tan
;asin
;acos
;atan
;number->string
;<
;<=
;>=
;>
;rationalize
;floor
;ceiling
;truncate
;round
;gcd
;lcm
;numerator
;exact
;inexact
;abs
;imag-part
;angle
;sqrt
;exact-integer-sqrt
;expt
;square
;exp
;log
;sin
;cos
;tan
;asin
;acos
;atan
;floor/
;floor-quotient
;floor-remainder
;truncate/
;truncate-quotient
;truncate-remainder
;min
;max
;make-rectangular
;make-polar
;real-part
;magnitude
;denominator
;digit-value
;char->integer
;length
;vector-length
;string-length
;bytevector-length
;bytevector-u8-ref
;bytevector-u8-set!
;Note: These definitions produce an output that is a sub-type.
number?
It is important to distinguish between mathematical numbers, the Scheme numbers that attempt to model them, the machine representations used to implement the Scheme numbers, and notations used to write numbers. This report uses the types
number
,complex
,real
,rational
, andinteger
to refer to both mathematical numbers and Scheme numbers.Numerical types
Mathematically, numbers are arranged into a tower of subtypes in which each level is a subset of the level above it:
- number
- complex number
- real number
- rational number
- integer
For example, 3 is an integer. Therefore 3 is also a rational, a real, and a complex number. The same is true of the Scheme numbers that model 3. For Scheme numbers, these types are defined by the predicates
number?
,complex?
,real?
,rational?
, andinteger?
.There is no simple relationship between a number's type and its representation inside a computer. Although most implementations of Scheme will offer at least two different representations of 3, these different representations denote the same integer.
Scheme's numerical operations treat numbers as abstract data, as independent of their representation as possible. Although an implementation of Scheme may use multiple internal representations of numbers, this ought not to be apparent to a casual programmer writing simple programs.
Exactness
It is useful to distinguish between numbers that are represented exactly and those that might not be. For example, indexes into data structures must be known exactly, as must some polynomial coefficients in a symbolic algebra system. On the other hand, the results of measurements are inherently inexact, and irrational numbers may be approximated by rational and therefore inexact approximations. In order to catch uses of inexact numbers where exact numbers are required, Scheme explicitly distinguishes exact from inexact numbers. This distinction is orthogonal to the dimension of type.
A Scheme number is
exact
if it was written as an exact constant or was derived from exact numbers using only exact operations. A number isinexact
if it was written as an inexact constant, if it was derived using inexact ingredients, or if it was derived using inexact operations. Thus inexact-ness is a contagious property of a number.In particular, an exact complex number has an exact real part and an exact imaginary part; all other complex numbers are inexact complex numbers.
If two implementations produce exact results for a computation that did not involve inexact intermediate results, the two ultimate results will be mathematically equal. This is generally not true of computations involving inexact numbers since approximate methods such as floating-point arithmetic may be used, but it is the duty of each implementation to make the result as close as practical to the mathematically ideal result.
Rational operations such as
+
should always produce exact results when given exact arguments. If the operation is unable to produce an exact result, then it may either report the violation of an implementation restriction or it may silently coerce its result to an inexact value. However,(/ 3 4)
must not return the mathematically incorrect value0
.Except for
exact
, the operations described in this section must generally return inexact results when given any inexact arguments. An operation may, however, return an exact result if it can prove that the value of the result is unaffected by the inexactness of its arguments. For example, multiplication of any number by an exact zero may produce an exact zero result, even if the other argument is inexact.Specifically, the expression
(* 0 +inf.0)
may return0
, or+nan.0
, or report that inexact numbers are not supported, or report that non-rational real numbers are not supported, or fail silently or noisily in other implementation-specific ways.Implementation restrictions
Implementations of Scheme are not required to implement the whole tower of subtypes given in the section "Numerical types", but they must implement a coherent subset consistent with both the purposes of the implementation and the spirit of the Scheme language. For example, implementations in which all numbers are real, or in which non-real numbers are always inexact, or in which exact numbers are always integer, are still quite useful.
Implementations may also support only a limited range of numbers of any type, subject to the requirements of this section. The supported range for exact numbers of any type may be different from the supported range for inexact numbers of that type. For example, an implementation that uses IEEE binary double-precision floating-point numbers to represent all its inexact real numbers may also support a practically unbounded range of exact integer's and rational's while limiting the range of inexact real's (and therefore the range of inexact integer's and rational's) to the dynamic range of the IEEE binary double format. Furthermore, the gaps between the representable inexact integer's and rational's are likely to be very large in such an implementation as the limits of this range are approached.
An implementation of Scheme must support exact integers throughout the range of numbers permitted as indexes of lists, vectors, bytevectors, and strings or that result from computing the length of one of these. The
length
,vector-length
,bytevector-length
, andstring-length
procedures must return an exact integer, and it is an error to use anything but an exact integer as an index. Furthermore, any integer constant within the index range, if expressed by an exact integer syntax, must be read as an exact integer, regardless of any implementation restrictions that apply outside this range. Finally, the procedures listed below will always return exact integer results provided all their arguments are exact integers and the mathematically expected results are representable as exact integers within the implementation:- * + abs ceiling denominator exact-integer-sqrt expt floor floor/ floor-quotient floor-remainder gcd lcm max min modulo numerator quotient rationalize remainder round square truncate truncate/ truncate-quotient truncate-remainder
It is recommended, but not required, that implementations support exact integer's and exact rational's of practically unlimited size and precision, and to implement the above procedures and the
/
procedure in such a way that they always return exact results when given exact arguments. If one of these procedures is unable to deliver an exact result when given exact arguments, then it may either report a violation of an implementation restriction or it may silently coerce its result to an inexact number; such a coercion can cause an error later. Nevertheless, implementations that do not provide exact rational numbers should return inexact rational numbers rather than reporting an implementation restriction.An implementation may use floating-point and other approximate representation strategies for inexact numbers. This report recommends, but does not require, that implementations that use floating-point representations follow the IEEE 754 standard, and that implementations using other representations should match or exceed the precision achievable using these floating-point standards. In particular, the description of transcendental functions in IEEE 754-2008 should be followed by such implementations, particularly with respect to infinities and
NaN
s.Although Scheme allows a variety of written notations for numbers, any particular implementation may support only some of them. For example, an implementation in which all numbers are real need not support the rectangular and polar notations for complex numbers. If an implementation encounters an exact numerical constant that it cannot represent as an exact number, then it may either report a violation of an implementation restriction or it may silently represent the constant by an inexact number.
Implementation extensions
Implementations may provide more than one representation of floating-point numbers with differing precisions. In an implementation which does so, an inexact result must be represented with at least as much precision as is used to express any of the inexact arguments to that operation. Although it is desirable for potentially inexact operations such as
sqrt
to produce exact answers when applied to exact arguments, if an exact number is operated upon so as to produce an inexact result, then the most precise representation available must be used. For example, the value of(sqrt 4)
should be2
, but in an implementation that provides both single and double precision floating point numbers it may be the latter but must not be the former.It is the programmer's responsibility to avoid using inexact number objects with magnitude or significand too large to be represented in the implementation.
In addition, implementations may distinguish special numbers called positive infinity, negative infinity, NaN, and negative zero.
Positive infinity is regarded as an inexact real (but not rational) number that represents an indeterminate value greater than the numbers represented by all rational numbers. Negative infinity is regarded as an inexact real (but not rational) number that represents an indeterminate value less than the numbers represented by all rational numbers.
Adding or multiplying an infinite value by any finite real value results in an appropriately signed infinity; however, the sum of positive and negative infinities is a
NaN
. Positive infinity is the reciprocal of zero, and negative infinity is the reciprocal of negative zero. The behavior of the transcendental functions is sensitive to infinity in accordance with IEEE 754.A
NaN
is regarded as an inexact real (but not rational) number so indeterminate that it might represent any real value, including positive or negative infinity, and might even be greater than positive infinity or less than negative infinity. An implementation that does not support non-real numbers may useNaN
to represent non-real values like(sqrt -1.0)
and(asin 2.0)
.A
NaN
always compares false to any number, including aNaN
. An arithmetic operation where one operand isNaN
returnsNaN
, unless the implementation can prove that the result would be the same if theNaN
were replaced by any rational number. Dividing zero by zero results inNaN
unless both zeros are exact.IEEE 754 specifies multiple
NaN
values. Scheme generally does not care if there is a single value (bit pattern) forNaN
, or if there are multiple values: if there are multipleNaN
values, or just one, they are all equivalent in terms of Scheme computation.Negative zero is an inexact real value written
-0.0
and is distinct (in the sense ofeqv?
) from0.0
. A Scheme implementation is not required to distinguish negative zero. If it does, however, the behavior of the transcendental functions is sensitive to the distinction in accordance with IEEE 754. Specifically, in a Scheme implementing both complex numbers and negative zero, the branch cut of the complex logarithm function is such that(imag-part (log -1.0-0.0i))
is-pi
rather thanpi
.Furthermore, the negation of negative zero is ordinary zero and vice versa. This implies that the sum of two or more negative zeros is negative, and the result of subtracting (positive) zero from a negative zero is likewise negative. However, numerical comparisons treat negative zero as equal to zero.
Note that both the real and the imaginary parts of a complex number can be infinities,
NaN
s, or negative zero.Syntax of numerical constants
The syntax of the written representations for numbers is described formally in the section on formal syntax. Note that case is not significant in numerical constants.
A number can be written in binary, octal, decimal, or hexa-decimal by the use of a radix prefix. The radix prefixes are
#b
(binary),#o
(octal),#d
(decimal), and#x
(hexa-decimal). With no radix prefix, a number is assumed to be expressed in decimal.A numerical constant can be specified to be either exact or inexact by a prefix. The prefixes are
#e
for exact, and#i
for inexact. An exactness prefix can appear before or after any radix prefix that is used. If the written representation of a number has no exactness prefix, the constant is inexact if it contains a decimal point or an exponent. Otherwise, it is exact.In systems with inexact numbers of varying precisions it can be useful to specify the precision of a constant. For this purpose, implementations may accept numerical constants written with an exponent marker that indicates the desired precision of the inexact representation. If so, the letter
s
,f
,d
, orl
, meaning short, single, double, or long precision, respectively, can be used in place ofe
. The default precision has at least as much precision as double, but implementations may allow this default to be set by the user.3.14159265358979F0 Round to single --- 3.141593 0.6L0 Extend to long --- .600000000000000
The numbers positive infinity, negative infinity, and
NaN
are written+inf.0
,-inf.0
and+nan.0
respectively.NaN
may also be written-nan.0
. The use of signs in the written representation does not necessarily reflect the underlying sign of theNaN
value, if any. Implementations are not required to support these numbers, but if they do, they must do so in general conformance with IEEE 754. However, implementations are not required to support signalingNaN
s, nor to provide a way to distinguish between differentNaN
s.There are two notations provided for non-real complex numbers: the rectangular notation
a + b i
, wherea
is the real part andb
is the imaginary part; and the polar notationr @ theta
, wherer
is the magnitude andtheta
is the phase (angle) in radians. These are related by the equationa + b i = r cos(theta) + (r sin (theta)) i
. All ofa
,b
,r
, andtheta
are real numbers.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.