Previous Up Next

6.8.1  Evaluating a real at a given precision: evalf Digits DIGITS

A real number is an exact number and its numeric evaluation at a given precision is a floating number represented in base 2. The precision of a floating number is the number of bits of its mantissa, which is at least 53 (hardware float numbers, also known as double).

Floating numbers are displayed in base 10 with a number of digits controlled by the user either by assigning the Digits variable or by modifying the Cas configuration (see Section 3.5.7, item 8). By default Digits is equal to 12.

The number of digits displayed controls the number of bits of the mantissa; if Digits is less than 15, 53 bits are used, if Digits is strictly greater than 15, the number of bits is a roundoff of Digits times log2(10).

An expression can be coerced into a floating number with the evalf command (see Section 6.8.1). The evalf command may have an optional second argument which will specify the precision to use.

Note that if an expression contains a floating number, evaluation will try to convert other arguments to floating point numbers in order to coerce the whole expression to a single floating number.


Examples.


Previous Up Next