decimal.rst 58.3 KB
Newer Older
1

Christian Heimes's avatar
Christian Heimes committed
2 3
:mod:`decimal` --- Decimal fixed point and floating point arithmetic
====================================================================
4 5 6 7 8 9 10 11 12 13 14

.. module:: decimal
   :synopsis: Implementation of the General Decimal Arithmetic  Specification.

.. moduleauthor:: Eric Price <eprice at tjhsst.edu>
.. moduleauthor:: Facundo Batista <facundo at taniquetil.com.ar>
.. moduleauthor:: Raymond Hettinger <python at rcn.com>
.. moduleauthor:: Aahz <aahz at pobox.com>
.. moduleauthor:: Tim Peters <tim.one at comcast.net>
.. sectionauthor:: Raymond D. Hettinger <python at rcn.com>

Christian Heimes's avatar
Christian Heimes committed
15 16 17 18 19 20 21 22
.. import modules for testing inline doctests with the Sphinx doctest builder
.. testsetup:: *

   import decimal
   import math
   from decimal import *
   # make sure each group gets a fresh context
   setcontext(Context())
23 24

The :mod:`decimal` module provides support for decimal floating point
25
arithmetic.  It offers several advantages over the :class:`float` datatype:
26

Christian Heimes's avatar
Christian Heimes committed
27 28 29 30 31
* Decimal "is based on a floating-point model which was designed with people
  in mind, and necessarily has a paramount guiding principle -- computers must
  provide an arithmetic that works in the same way as the arithmetic that
  people learn at school." -- excerpt from the decimal arithmetic specification.

32 33 34 35 36 37
* Decimal numbers can be represented exactly.  In contrast, numbers like
  :const:`1.1` do not have an exact representation in binary floating point. End
  users typically would not expect :const:`1.1` to display as
  :const:`1.1000000000000001` as it does with binary floating point.

* The exactness carries over into arithmetic.  In decimal floating point, ``0.1
38
  + 0.1 + 0.1 - 0.3`` is exactly equal to zero.  In binary floating point, the result
39 40
  is :const:`5.5511151231257827e-017`.  While near to zero, the differences
  prevent reliable equality testing and differences can accumulate. For this
Christian Heimes's avatar
Christian Heimes committed
41
  reason, decimal is preferred in accounting applications which have strict
42 43 44 45 46 47 48 49 50 51
  equality invariants.

* The decimal module incorporates a notion of significant places so that ``1.30
  + 1.20`` is :const:`2.50`.  The trailing zero is kept to indicate significance.
  This is the customary presentation for monetary applications. For
  multiplication, the "schoolbook" approach uses all the figures in the
  multiplicands.  For instance, ``1.3 * 1.2`` gives :const:`1.56` while ``1.30 *
  1.20`` gives :const:`1.5600`.

* Unlike hardware based binary floating point, the decimal module has a user
52
  alterable precision (defaulting to 28 places) which can be as large as needed for
Christian Heimes's avatar
Christian Heimes committed
53
  a given problem:
54 55 56

     >>> getcontext().prec = 6
     >>> Decimal(1) / Decimal(7)
Christian Heimes's avatar
Christian Heimes committed
57
     Decimal('0.142857')
58 59
     >>> getcontext().prec = 28
     >>> Decimal(1) / Decimal(7)
Christian Heimes's avatar
Christian Heimes committed
60
     Decimal('0.1428571428571428571428571429')
61 62 63 64 65

* Both binary and decimal floating point are implemented in terms of published
  standards.  While the built-in float type exposes only a modest portion of its
  capabilities, the decimal module exposes all required parts of the standard.
  When needed, the programmer has full control over rounding and signal handling.
Christian Heimes's avatar
Christian Heimes committed
66 67 68 69 70 71 72
  This includes an option to enforce exact arithmetic by using exceptions
  to block any inexact operations.

* The decimal module was designed to support "without prejudice, both exact
  unrounded decimal arithmetic (sometimes called fixed-point arithmetic)
  and rounded floating-point arithmetic."  -- excerpt from the decimal
  arithmetic specification.
73 74 75 76 77 78

The module design is centered around three concepts:  the decimal number, the
context for arithmetic, and signals.

A decimal number is immutable.  It has a sign, coefficient digits, and an
exponent.  To preserve significance, the coefficient digits do not truncate
79
trailing zeros.  Decimals also include special values such as
80 81 82 83 84 85 86 87
:const:`Infinity`, :const:`-Infinity`, and :const:`NaN`.  The standard also
differentiates :const:`-0` from :const:`+0`.

The context for arithmetic is an environment specifying precision, rounding
rules, limits on exponents, flags indicating the results of operations, and trap
enablers which determine whether signals are treated as exceptions.  Rounding
options include :const:`ROUND_CEILING`, :const:`ROUND_DOWN`,
:const:`ROUND_FLOOR`, :const:`ROUND_HALF_DOWN`, :const:`ROUND_HALF_EVEN`,
88
:const:`ROUND_HALF_UP`, :const:`ROUND_UP`, and :const:`ROUND_05UP`.
89 90 91 92 93 94 95 96 97

Signals are groups of exceptional conditions arising during the course of
computation.  Depending on the needs of the application, signals may be ignored,
considered as informational, or treated as exceptions. The signals in the
decimal module are: :const:`Clamped`, :const:`InvalidOperation`,
:const:`DivisionByZero`, :const:`Inexact`, :const:`Rounded`, :const:`Subnormal`,
:const:`Overflow`, and :const:`Underflow`.

For each signal there is a flag and a trap enabler.  When a signal is
98
encountered, its flag is set to one, then, if the trap enabler is
99 100 101 102 103 104
set to one, an exception is raised.  Flags are sticky, so the user needs to
reset them before monitoring a calculation.


.. seealso::

105 106
   * IBM's General Decimal Arithmetic Specification, `The General Decimal Arithmetic
     Specification <http://www2.hursley.ibm.com/decimal/decarith.html>`_.
107

108
   * IEEE standard 854-1987, `Unofficial IEEE 854 Text
Christian Heimes's avatar
Christian Heimes committed
109
     <http://754r.ucbtest.org/standards/854.pdf>`_.
110

111
.. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
112 113 114 115 116 117 118 119 120 121 122 123 124 125


.. _decimal-tutorial:

Quick-start Tutorial
--------------------

The usual start to using decimals is importing the module, viewing the current
context with :func:`getcontext` and, if necessary, setting new values for
precision, rounding, or enabled traps::

   >>> from decimal import *
   >>> getcontext()
   Context(prec=28, rounding=ROUND_HALF_EVEN, Emin=-999999999, Emax=999999999,
Christian Heimes's avatar
Christian Heimes committed
126 127
           capitals=1, flags=[], traps=[Overflow, DivisionByZero,
           InvalidOperation])
128 129 130 131 132 133 134 135

   >>> getcontext().prec = 7       # Set a new precision

Decimal instances can be constructed from integers, strings, or tuples.  To
create a Decimal from a :class:`float`, first convert it to a string.  This
serves as an explicit reminder of the details of the conversion (including
representation error).  Decimal numbers include special values such as
:const:`NaN` which stands for "Not a number", positive and negative
Christian Heimes's avatar
Christian Heimes committed
136
:const:`Infinity`, and :const:`-0`.
137 138

   >>> Decimal(10)
Christian Heimes's avatar
Christian Heimes committed
139 140 141
   Decimal('10')
   >>> Decimal('3.14')
   Decimal('3.14')
142
   >>> Decimal((0, (3, 1, 4), -2))
Christian Heimes's avatar
Christian Heimes committed
143
   Decimal('3.14')
144
   >>> Decimal(str(2.0 ** 0.5))
Christian Heimes's avatar
Christian Heimes committed
145 146 147 148 149 150 151
   Decimal('1.41421356237')
   >>> Decimal(2) ** Decimal('0.5')
   Decimal('1.414213562373095048801688724')
   >>> Decimal('NaN')
   Decimal('NaN')
   >>> Decimal('-Infinity')
   Decimal('-Infinity')
152 153 154

The significance of a new Decimal is determined solely by the number of digits
input.  Context precision and rounding only come into play during arithmetic
Christian Heimes's avatar
Christian Heimes committed
155 156 157
operations.

.. doctest:: newcontext
158 159 160

   >>> getcontext().prec = 6
   >>> Decimal('3.0')
Christian Heimes's avatar
Christian Heimes committed
161
   Decimal('3.0')
162
   >>> Decimal('3.1415926535')
Christian Heimes's avatar
Christian Heimes committed
163
   Decimal('3.1415926535')
164
   >>> Decimal('3.1415926535') + Decimal('2.7182818285')
Christian Heimes's avatar
Christian Heimes committed
165
   Decimal('5.85987')
166 167
   >>> getcontext().rounding = ROUND_UP
   >>> Decimal('3.1415926535') + Decimal('2.7182818285')
Christian Heimes's avatar
Christian Heimes committed
168
   Decimal('5.85988')
169 170

Decimals interact well with much of the rest of Python.  Here is a small decimal
Christian Heimes's avatar
Christian Heimes committed
171 172 173 174
floating point flying circus:

.. doctest::
   :options: +NORMALIZE_WHITESPACE
175 176 177

   >>> data = map(Decimal, '1.34 1.87 3.45 2.35 1.00 0.03 9.25'.split())
   >>> max(data)
Christian Heimes's avatar
Christian Heimes committed
178
   Decimal('9.25')
179
   >>> min(data)
Christian Heimes's avatar
Christian Heimes committed
180
   Decimal('0.03')
181
   >>> sorted(data)
Christian Heimes's avatar
Christian Heimes committed
182 183
   [Decimal('0.03'), Decimal('1.00'), Decimal('1.34'), Decimal('1.87'),
    Decimal('2.35'), Decimal('3.45'), Decimal('9.25')]
184
   >>> sum(data)
Christian Heimes's avatar
Christian Heimes committed
185
   Decimal('19.29')
186 187 188 189 190 191 192 193 194 195
   >>> a,b,c = data[:3]
   >>> str(a)
   '1.34'
   >>> float(a)
   1.3400000000000001
   >>> round(a, 1)     # round() first converts to binary floating point
   1.3
   >>> int(a)
   1
   >>> a * 5
Christian Heimes's avatar
Christian Heimes committed
196
   Decimal('6.70')
197
   >>> a * b
Christian Heimes's avatar
Christian Heimes committed
198
   Decimal('2.5058')
199
   >>> c % a
Christian Heimes's avatar
Christian Heimes committed
200
   Decimal('0.77')
201

Christian Heimes's avatar
Christian Heimes committed
202
And some mathematical functions are also available to Decimal:
203 204

   >>> Decimal(2).sqrt()
Christian Heimes's avatar
Christian Heimes committed
205
   Decimal('1.414213562373095048801688724')
206
   >>> Decimal(1).exp()
Christian Heimes's avatar
Christian Heimes committed
207 208 209 210 211
   Decimal('2.718281828459045235360287471')
   >>> Decimal('10').ln()
   Decimal('2.302585092994045684017991455')
   >>> Decimal('10').log10()
   Decimal('1')
212

213 214
The :meth:`quantize` method rounds a number to a fixed exponent.  This method is
useful for monetary applications that often round results to a fixed number of
Christian Heimes's avatar
Christian Heimes committed
215
places:
216 217

   >>> Decimal('7.325').quantize(Decimal('.01'), rounding=ROUND_DOWN)
Christian Heimes's avatar
Christian Heimes committed
218
   Decimal('7.32')
219
   >>> Decimal('7.325').quantize(Decimal('1.'), rounding=ROUND_UP)
Christian Heimes's avatar
Christian Heimes committed
220
   Decimal('8')
221 222 223 224 225 226 227 228 229 230 231 232

As shown above, the :func:`getcontext` function accesses the current context and
allows the settings to be changed.  This approach meets the needs of most
applications.

For more advanced work, it may be useful to create alternate contexts using the
Context() constructor.  To make an alternate active, use the :func:`setcontext`
function.

In accordance with the standard, the :mod:`Decimal` module provides two ready to
use standard contexts, :const:`BasicContext` and :const:`ExtendedContext`. The
former is especially useful for debugging because many of the traps are
Christian Heimes's avatar
Christian Heimes committed
233 234 235 236
enabled:

.. doctest:: newcontext
   :options: +NORMALIZE_WHITESPACE
237 238 239 240

   >>> myothercontext = Context(prec=60, rounding=ROUND_HALF_DOWN)
   >>> setcontext(myothercontext)
   >>> Decimal(1) / Decimal(7)
Christian Heimes's avatar
Christian Heimes committed
241
   Decimal('0.142857142857142857142857142857142857142857142857142857142857')
242 243 244 245 246 247

   >>> ExtendedContext
   Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999999, Emax=999999999,
           capitals=1, flags=[], traps=[])
   >>> setcontext(ExtendedContext)
   >>> Decimal(1) / Decimal(7)
Christian Heimes's avatar
Christian Heimes committed
248
   Decimal('0.142857143')
249
   >>> Decimal(42) / Decimal(0)
Christian Heimes's avatar
Christian Heimes committed
250
   Decimal('Infinity')
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266

   >>> setcontext(BasicContext)
   >>> Decimal(42) / Decimal(0)
   Traceback (most recent call last):
     File "<pyshell#143>", line 1, in -toplevel-
       Decimal(42) / Decimal(0)
   DivisionByZero: x / 0

Contexts also have signal flags for monitoring exceptional conditions
encountered during computations.  The flags remain set until explicitly cleared,
so it is best to clear the flags before each set of monitored computations by
using the :meth:`clear_flags` method. ::

   >>> setcontext(ExtendedContext)
   >>> getcontext().clear_flags()
   >>> Decimal(355) / Decimal(113)
Christian Heimes's avatar
Christian Heimes committed
267
   Decimal('3.14159292')
268 269
   >>> getcontext()
   Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999999, Emax=999999999,
Christian Heimes's avatar
Christian Heimes committed
270
           capitals=1, flags=[Rounded, Inexact], traps=[])
271 272 273 274 275 276

The *flags* entry shows that the rational approximation to :const:`Pi` was
rounded (digits beyond the context precision were thrown away) and that the
result is inexact (some of the discarded digits were non-zero).

Individual traps are set using the dictionary in the :attr:`traps` field of a
Christian Heimes's avatar
Christian Heimes committed
277
context:
278

Christian Heimes's avatar
Christian Heimes committed
279 280 281
.. doctest:: newcontext

   >>> setcontext(ExtendedContext)
282
   >>> Decimal(1) / Decimal(0)
Christian Heimes's avatar
Christian Heimes committed
283
   Decimal('Infinity')
284 285 286 287 288 289 290 291 292 293 294 295 296
   >>> getcontext().traps[DivisionByZero] = 1
   >>> Decimal(1) / Decimal(0)
   Traceback (most recent call last):
     File "<pyshell#112>", line 1, in -toplevel-
       Decimal(1) / Decimal(0)
   DivisionByZero: x / 0

Most programs adjust the current context only once, at the beginning of the
program.  And, in many applications, data is converted to :class:`Decimal` with
a single cast inside a loop.  With context set and decimals created, the bulk of
the program manipulates the data no differently than with other Python numeric
types.

297
.. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
298 299 300 301 302 303 304 305 306 307


.. _decimal-decimal:

Decimal objects
---------------


.. class:: Decimal([value [, context]])

308
   Construct a new :class:`Decimal` object based from *value*.
309

310
   *value* can be an integer, string, tuple, or another :class:`Decimal`
Christian Heimes's avatar
Christian Heimes committed
311
   object. If no *value* is given, returns ``Decimal('0')``.  If *value* is a
312 313
   string, it should conform to the decimal numeric string syntax after leading
   and trailing whitespace characters are removed::
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328

      sign           ::=  '+' | '-'
      digit          ::=  '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'
      indicator      ::=  'e' | 'E'
      digits         ::=  digit [digit]...
      decimal-part   ::=  digits '.' [digits] | ['.'] digits
      exponent-part  ::=  indicator [sign] digits
      infinity       ::=  'Infinity' | 'Inf'
      nan            ::=  'NaN' [digits] | 'sNaN' [digits]
      numeric-value  ::=  decimal-part [exponent-part] | infinity
      numeric-string ::=  [sign] numeric-value | [sign] nan  

   If *value* is a :class:`tuple`, it should have three components, a sign
   (:const:`0` for positive or :const:`1` for negative), a :class:`tuple` of
   digits, and an integer exponent. For example, ``Decimal((0, (1, 4, 1, 4), -3))``
Christian Heimes's avatar
Christian Heimes committed
329
   returns ``Decimal('1.414')``.
330 331 332

   The *context* precision does not affect how many digits are stored. That is
   determined exclusively by the number of digits in *value*. For example,
Christian Heimes's avatar
Christian Heimes committed
333
   ``Decimal('3.00000')`` records all five zeros even if the context precision is
334 335 336 337 338 339 340 341 342
   only three.

   The purpose of the *context* argument is determining what to do if *value* is a
   malformed string.  If the context traps :const:`InvalidOperation`, an exception
   is raised; otherwise, the constructor returns a new Decimal with the value of
   :const:`NaN`.

   Once constructed, :class:`Decimal` objects are immutable.

343

344
Decimal floating point objects share many properties with the other built-in
345 346 347
numeric types such as :class:`float` and :class:`int`.  All of the usual math
operations and special methods apply.  Likewise, decimal objects can be copied,
pickled, printed, used as dictionary keys, used as set elements, compared,
348
sorted, and converted to another type (such as :class:`float` or :class:`int`).
349 350 351 352 353 354 355 356

In addition to the standard numeric properties, decimal floating point objects
also have a number of specialized methods:


.. method:: Decimal.adjusted()

   Return the adjusted exponent after shifting out the coefficient's rightmost
Christian Heimes's avatar
Christian Heimes committed
357
   digits until only the lead digit remains: ``Decimal('321e+5').adjusted()``
358 359 360 361 362 363
   returns seven.  Used for determining the position of the most significant digit
   with respect to the decimal point.


.. method:: Decimal.as_tuple()

364 365 366
   Return a :term:`named tuple` representation of the number:
   ``DecimalTuple(sign, digits, exponent)``.

367

368 369 370 371 372 373
.. method:: Decimal.canonical()

   Return the canonical encoding of the argument.  Currently, the
   encoding of a :class:`Decimal` instance is always canonical, so
   this operation returns its argument unchanged.

374 375 376

.. method:: Decimal.compare(other[, context])

377 378 379 380 381
   Compare the values of two Decimal instances.  This operation
   behaves in the same way as the usual comparison method
   :meth:`__cmp__`, except that :meth:`compare` returns a Decimal
   instance rather than an integer, and if either operand is a NaN
   then the result is a NaN::
382

Christian Heimes's avatar
Christian Heimes committed
383 384 385 386
      a or b is a NaN ==> Decimal('NaN')
      a < b           ==> Decimal('-1')
      a == b          ==> Decimal('0')
      a > b           ==> Decimal('1')
387

388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
.. method:: Decimal.compare_signal(other[, context])

   This operation is identical to the :meth:`compare` method, except
   that all NaNs signal.  That is, if neither operand is a signaling
   NaN then any quiet NaN operand is treated as though it were a
   signaling NaN.


.. method:: Decimal.compare_total(other)

   Compare two operands using their abstract representation rather
   than their numerical value.  Similar to the :meth:`compare` method,
   but the result gives a total ordering on :class:`Decimal`
   instances.  Two :class:`Decimal` instances with the same numeric
   value but different representations compare unequal in this
Christian Heimes's avatar
Christian Heimes committed
403
   ordering:
404
   
Christian Heimes's avatar
Christian Heimes committed
405 406
      >>> Decimal('12.0').compare_total(Decimal('12'))
      Decimal('-1')
407 408

   Quiet and signaling NaNs are also included in the total ordering.
Christian Heimes's avatar
Christian Heimes committed
409 410
   The result of this function is ``Decimal('0')`` if both operands
   have the same representation, ``Decimal('-1')`` if the first
411
   operand is lower in the total order than the second, and
Christian Heimes's avatar
Christian Heimes committed
412
   ``Decimal('1')`` if the first operand is higher in the total order
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
   than the second operand.  See the specification for details of the
   total order.


.. method:: Decimal.compare_total_mag(other)

   Compare two operands using their abstract representation rather
   than their value as in :meth:`compare_total`, but ignoring the sign
   of each operand.  ``x.compare_total_mag(y)`` is equivalent to
   ``x.copy_abs().compare_total(y.copy_abs())``.


.. method:: Decimal.copy_abs()

   Return the absolute value of the argument.  This operation is
   unaffected by the context and is quiet: no flags are changed and no
   rounding is performed.


.. method:: Decimal.copy_negate()

   Return the negation of the argument.  This operation is unaffected
   by the context and is quiet: no flags are changed and no rounding
   is performed.


.. method:: Decimal.copy_sign(other)

   Return a copy of the first operand with the sign set to be the
Christian Heimes's avatar
Christian Heimes committed
442
   same as the sign of the second operand.  For example:
443

Christian Heimes's avatar
Christian Heimes committed
444 445
      >>> Decimal('2.3').copy_sign(Decimal('-1.5'))
      Decimal('-2.3')
446 447 448 449 450 451 452 453 454 455 456 457
   
   This operation is unaffected by the context and is quiet: no flags
   are changed and no rounding is performed.


.. method:: Decimal.exp([context])

   Return the value of the (natural) exponential function ``e**x`` at the
   given number.  The result is correctly rounded using the
   :const:`ROUND_HALF_EVEN` rounding mode.

   >>> Decimal(1).exp()
Christian Heimes's avatar
Christian Heimes committed
458
   Decimal('2.718281828459045235360287471')
459
   >>> Decimal(321).exp()
Christian Heimes's avatar
Christian Heimes committed
460
   Decimal('2.561702493119680037517373933E+139')
461 462 463 464 465 466 467 468


.. method:: Decimal.fma(other, third[, context])

   Fused multiply-add.  Return self*other+third with no rounding of
   the intermediate product self*other.

   >>> Decimal(2).fma(3, 5)
Christian Heimes's avatar
Christian Heimes committed
469
   Decimal('11')
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548


.. method:: Decimal.is_canonical()

   Return :const:`True` if the argument is canonical and
   :const:`False` otherwise.  Currently, a :class:`Decimal` instance
   is always canonical, so this operation always returns
   :const:`True`.


.. method:: is_finite()

   Return :const:`True` if the argument is a finite number, and
   :const:`False` if the argument is an infinity or a NaN.


.. method:: is_infinite()

   Return :const:`True` if the argument is either positive or
   negative infinity and :const:`False` otherwise.


.. method:: is_nan()

   Return :const:`True` if the argument is a (quiet or signaling)
   NaN and :const:`False` otherwise.


.. method:: is_normal()

   Return :const:`True` if the argument is a *normal* finite number.
   Return :const:`False` if the argument is zero, subnormal, infinite
   or a NaN.


.. method:: is_qnan()

   Return :const:`True` if the argument is a quiet NaN, and
   :const:`False` otherwise.


.. method:: is_signed()

   Return :const:`True` if the argument has a negative sign and
   :const:`False` otherwise.  Note that zeros and NaNs can both carry
   signs.


.. method:: is_snan()

   Return :const:`True` if the argument is a signaling NaN and
   :const:`False` otherwise.


.. method:: is_subnormal()

   Return :const:`True` if the argument is subnormal, and
   :const:`False` otherwise.


.. method:: is_zero()

   Return :const:`True` if the argument is a (positive or negative)
   zero and :const:`False` otherwise.


.. method:: Decimal.ln([context])

   Return the natural (base e) logarithm of the operand.  The result
   is correctly rounded using the :const:`ROUND_HALF_EVEN` rounding
   mode.


.. method:: Decimal.log10([context])

   Return the base ten logarithm of the operand.  The result is
   correctly rounded using the :const:`ROUND_HALF_EVEN` rounding mode.


549
.. method:: Decimal.logb([context])
550 551 552

   For a nonzero number, return the adjusted exponent of its operand
   as a :class:`Decimal` instance.  If the operand is a zero then
Christian Heimes's avatar
Christian Heimes committed
553
   ``Decimal('-Infinity')`` is returned and the
554
   :const:`DivisionByZero` flag is raised.  If the operand is an
Christian Heimes's avatar
Christian Heimes committed
555
   infinity then ``Decimal('Infinity')`` is returned.
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584


.. method:: Decimal.logical_and(other[, context])

   :meth:`logical_and` is a logical operation which takes two
   *logical operands* (see :ref:`logical_operands_label`).  The result
   is the digit-wise ``and`` of the two operands.


.. method:: Decimal.logical_invert(other[, context])

   :meth:`logical_invert` is a logical operation.  The argument must
   be a *logical operand* (see :ref:`logical_operands_label`).  The
   result is the digit-wise inversion of the operand.


.. method:: Decimal.logical_or(other[, context])

   :meth:`logical_or` is a logical operation which takes two *logical
   operands* (see :ref:`logical_operands_label`).  The result is the
   digit-wise ``or`` of the two operands.


.. method:: Decimal.logical_xor(other[, context])

   :meth:`logical_xor` is a logical operation which takes two
   *logical operands* (see :ref:`logical_operands_label`).  The result
   is the digit-wise exclusive or of the two operands.

585 586 587 588

.. method:: Decimal.max(other[, context])

   Like ``max(self, other)`` except that the context rounding rule is applied
589
   before returning and that :const:`NaN` values are either signaled or ignored
590 591
   (depending on the context and whether they are signaling or quiet).

592

593 594 595 596 597
.. method:: Decimal.max_mag(other[, context])

   Similar to the :meth:`max` method, but the comparison is done using
   the absolute values of the operands.

598 599 600 601

.. method:: Decimal.min(other[, context])

   Like ``min(self, other)`` except that the context rounding rule is applied
602
   before returning and that :const:`NaN` values are either signaled or ignored
603 604
   (depending on the context and whether they are signaling or quiet).

605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
.. method:: Decimal.min_mag(other[, context])

   Similar to the :meth:`min` method, but the comparison is done using
   the absolute values of the operands.


.. method:: Decimal.next_minus([context])

   Return the largest number representable in the given context (or
   in the current thread's context if no context is given) that is smaller
   than the given operand.


.. method:: Decimal.next_plus([context])

   Return the smallest number representable in the given context (or
   in the current thread's context if no context is given) that is
   larger than the given operand.


.. method:: Decimal.next_toward(other[, context])

   If the two operands are unequal, return the number closest to the
   first operand in the direction of the second operand.  If both
   operands are numerically equal, return a copy of the first operand
   with the sign set to be the same as the sign of the second operand.

632 633 634

.. method:: Decimal.normalize([context])

635
   Normalize the number by stripping the rightmost trailing zeros and converting
Christian Heimes's avatar
Christian Heimes committed
636
   any result equal to :const:`Decimal('0')` to :const:`Decimal('0e0')`. Used for
637
   producing canonical values for members of an equivalence class. For example,
Christian Heimes's avatar
Christian Heimes committed
638 639
   ``Decimal('32.100')`` and ``Decimal('0.321000e+2')`` both normalize to the
   equivalent value ``Decimal('32.1')``.
640

641

642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
.. method:: Decimal.number_class([context])

   Return a string describing the *class* of the operand.  The
   returned value is one of the following ten strings.

   * ``"-Infinity"``, indicating that the operand is negative infinity.
   * ``"-Normal"``, indicating that the operand is a negative normal number.
   * ``"-Subnormal"``, indicating that the operand is negative and subnormal.
   * ``"-Zero"``, indicating that the operand is a negative zero.
   * ``"+Zero"``, indicating that the operand is a positive zero.
   * ``"+Subnormal"``, indicating that the operand is positive and subnormal.
   * ``"+Normal"``, indicating that the operand is a positive normal number.
   * ``"+Infinity"``, indicating that the operand is positive infinity.
   * ``"NaN"``, indicating that the operand is a quiet NaN (Not a Number).
   * ``"sNaN"``, indicating that the operand is a signaling NaN.


.. method:: Decimal.quantize(exp[, rounding[, context[, watchexp]]])

661
   Return a value equal to the first operand after rounding and
662
   having the exponent of the second operand.
663

Christian Heimes's avatar
Christian Heimes committed
664 665
   >>> Decimal('1.41421356').quantize(Decimal('1.000'))
   Decimal('1.414')
666

667 668 669 670 671
   Unlike other operations, if the length of the coefficient after the
   quantize operation would be greater than precision, then an
   :const:`InvalidOperation` is signaled. This guarantees that, unless
   there is an error condition, the quantized exponent is always equal
   to that of the right-hand operand.
672

673 674
   Also unlike other operations, quantize never signals Underflow,
   even if the result is subnormal and inexact.
675

676 677 678 679 680 681
   If the exponent of the second operand is larger than that of the
   first then rounding may be necessary.  In this case, the rounding
   mode is determined by the ``rounding`` argument if given, else by
   the given ``context`` argument; if neither argument is given the
   rounding mode of the current thread's context is used.

682 683
   If *watchexp* is set (default), then an error is returned whenever the
   resulting exponent is greater than :attr:`Emax` or less than :attr:`Etiny`.
684 685 686 687 688 689 690

.. method:: Decimal.radix()

   Return ``Decimal(10)``, the radix (base) in which the
   :class:`Decimal` class does all its arithmetic.  Included for
   compatibility with the specification.

691 692 693

.. method:: Decimal.remainder_near(other[, context])

694
   Compute the modulo as either a positive or negative value depending on which is
695
   closest to zero.  For instance, ``Decimal(10).remainder_near(6)`` returns
Christian Heimes's avatar
Christian Heimes committed
696
   ``Decimal('-2')`` which is closer to zero than ``Decimal('4')``.
697 698 699

   If both are equally close, the one chosen will have the same sign as *self*.

700 701 702 703 704 705 706 707 708 709 710 711
.. method:: Decimal.rotate(other[, context])

   Return the result of rotating the digits of the first operand by
   an amount specified by the second operand.  The second operand
   must be an integer in the range -precision through precision.  The
   absolute value of the second operand gives the number of places to
   rotate.  If the second operand is positive then rotation is to the
   left; otherwise rotation is to the right.  The coefficient of the
   first operand is padded on the left with zeros to length precision
   if necessary.  The sign and exponent of the first operand are
   unchanged.

712 713 714 715 716 717

.. method:: Decimal.same_quantum(other[, context])

   Test whether self and other have the same exponent or whether both are
   :const:`NaN`.

718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
.. method:: Decimal.scaleb(other[, context])

   Return the first operand with exponent adjusted by the second.
   Equivalently, return the first operand multiplied by ``10**other``.
   The second operand must be an integer.


.. method:: Decimal.shift(other[, context])

   Return the result of shifting the digits of the first operand by
   an amount specified by the second operand.  The second operand must
   be an integer in the range -precision through precision.  The
   absolute value of the second operand gives the number of places to
   shift.  If the second operand is positive then the shift is to the
   left; otherwise the shift is to the right.  Digits shifted into the
   coefficient are zeros.  The sign and exponent of the first operand
   are unchanged.

736 737 738

.. method:: Decimal.sqrt([context])

739
   Return the square root of the argument to full precision.
740 741 742 743 744 745 746 747


.. method:: Decimal.to_eng_string([context])

   Convert to an engineering-type string.

   Engineering notation has an exponent which is a multiple of 3, so there are up
   to 3 digits left of the decimal place.  For example, converts
Christian Heimes's avatar
Christian Heimes committed
748
   ``Decimal('123E+1')`` to ``Decimal('1.23E+3')``
749 750 751

.. method:: Decimal.to_integral([rounding[, context]])

752 753 754 755 756
   Identical to the :meth:`to_integral_value` method.  The ``to_integral``
   name has been kept for compatibility with older versions.

.. method:: Decimal.to_integral_exact([rounding[, context]])

757
   Round to the nearest integer, signaling
758 759 760 761 762 763 764 765 766
   :const:`Inexact` or :const:`Rounded` as appropriate if rounding
   occurs.  The rounding mode is determined by the ``rounding``
   parameter if given, else by the given ``context``.  If neither
   parameter is given then the rounding mode of the current context is
   used.


.. method:: Decimal.to_integral_value([rounding[, context]])

767
   Round to the nearest integer without signaling :const:`Inexact` or
768 769 770
   :const:`Rounded`.  If given, applies *rounding*; otherwise, uses the rounding
   method in either the supplied *context* or the current context.

771 772 773

.. method:: Decimal.trim()

774
   Return the decimal with *insignificant* trailing zeros removed.
775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
   Here, a trailing zero is considered insignificant either if it
   follows the decimal point, or if the exponent of the argument (that
   is, the last element of the :meth:`as_tuple` representation) is
   positive.


.. _logical_operands_label:

Logical operands
^^^^^^^^^^^^^^^^

The :meth:`logical_and`, :meth:`logical_invert`, :meth:`logical_or`,
and :meth:`logical_xor` methods expect their arguments to be *logical
operands*.  A *logical operand* is a :class:`Decimal` instance whose
exponent and sign are both zero, and whose digits are all either
:const:`0` or :const:`1`.

792
.. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859


.. _decimal-context:

Context objects
---------------

Contexts are environments for arithmetic operations.  They govern precision, set
rules for rounding, determine which signals are treated as exceptions, and limit
the range for exponents.

Each thread has its own current context which is accessed or changed using the
:func:`getcontext` and :func:`setcontext` functions:


.. function:: getcontext()

   Return the current context for the active thread.


.. function:: setcontext(c)

   Set the current context for the active thread to *c*.

Beginning with Python 2.5, you can also use the :keyword:`with` statement and
the :func:`localcontext` function to temporarily change the active context.


.. function:: localcontext([c])

   Return a context manager that will set the current context for the active thread
   to a copy of *c* on entry to the with-statement and restore the previous context
   when exiting the with-statement. If no context is specified, a copy of the
   current context is used.

   For example, the following code sets the current decimal precision to 42 places,
   performs a calculation, and then automatically restores the previous context::

      from decimal import localcontext

      with localcontext() as ctx:
          ctx.prec = 42   # Perform a high precision calculation
          s = calculate_something()
      s = +s  # Round the final result back to the default precision

New contexts can also be created using the :class:`Context` constructor
described below. In addition, the module provides three pre-made contexts:


.. class:: BasicContext

   This is a standard context defined by the General Decimal Arithmetic
   Specification.  Precision is set to nine.  Rounding is set to
   :const:`ROUND_HALF_UP`.  All flags are cleared.  All traps are enabled (treated
   as exceptions) except :const:`Inexact`, :const:`Rounded`, and
   :const:`Subnormal`.

   Because many of the traps are enabled, this context is useful for debugging.


.. class:: ExtendedContext

   This is a standard context defined by the General Decimal Arithmetic
   Specification.  Precision is set to nine.  Rounding is set to
   :const:`ROUND_HALF_EVEN`.  All flags are cleared.  No traps are enabled (so that
   exceptions are not raised during computations).

Christian Heimes's avatar
Christian Heimes committed
860
   Because the traps are disabled, this context is useful for applications that
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904
   prefer to have result value of :const:`NaN` or :const:`Infinity` instead of
   raising exceptions.  This allows an application to complete a run in the
   presence of conditions that would otherwise halt the program.


.. class:: DefaultContext

   This context is used by the :class:`Context` constructor as a prototype for new
   contexts.  Changing a field (such a precision) has the effect of changing the
   default for new contexts creating by the :class:`Context` constructor.

   This context is most useful in multi-threaded environments.  Changing one of the
   fields before threads are started has the effect of setting system-wide
   defaults.  Changing the fields after threads have started is not recommended as
   it would require thread synchronization to prevent race conditions.

   In single threaded environments, it is preferable to not use this context at
   all.  Instead, simply create contexts explicitly as described below.

   The default values are precision=28, rounding=ROUND_HALF_EVEN, and enabled traps
   for Overflow, InvalidOperation, and DivisionByZero.

In addition to the three supplied contexts, new contexts can be created with the
:class:`Context` constructor.


.. class:: Context(prec=None, rounding=None, traps=None, flags=None, Emin=None, Emax=None, capitals=1)

   Creates a new context.  If a field is not specified or is :const:`None`, the
   default values are copied from the :const:`DefaultContext`.  If the *flags*
   field is not specified or is :const:`None`, all flags are cleared.

   The *prec* field is a positive integer that sets the precision for arithmetic
   operations in the context.

   The *rounding* option is one of:

   * :const:`ROUND_CEILING` (towards :const:`Infinity`),
   * :const:`ROUND_DOWN` (towards zero),
   * :const:`ROUND_FLOOR` (towards :const:`-Infinity`),
   * :const:`ROUND_HALF_DOWN` (to nearest with ties going towards zero),
   * :const:`ROUND_HALF_EVEN` (to nearest with ties going to nearest even integer),
   * :const:`ROUND_HALF_UP` (to nearest with ties going away from zero), or
   * :const:`ROUND_UP` (away from zero).
905 906
   * :const:`ROUND_05UP` (away from zero if last digit after rounding towards zero 
     would have been 0 or 5; otherwise towards zero)
907 908 909 910 911 912 913 914 915 916 917 918

   The *traps* and *flags* fields list any signals to be set. Generally, new
   contexts should only set traps and leave the flags clear.

   The *Emin* and *Emax* fields are integers specifying the outer limits allowable
   for exponents.

   The *capitals* field is either :const:`0` or :const:`1` (the default). If set to
   :const:`1`, exponents are printed with a capital :const:`E`; otherwise, a
   lowercase :const:`e` is used: :const:`Decimal('6.02e+23')`.


919 920 921 922 923 924 925
The :class:`Context` class defines several general purpose methods as
well as a large number of methods for doing arithmetic directly in a
given context.  In addition, for each of the :class:`Decimal` methods
described above (with the exception of the :meth:`adjusted` and
:meth:`as_tuple` methods) there is a corresponding :class:`Context`
method.  For example, ``C.exp(x)`` is equivalent to
``x.exp(context=C)``.
926 927 928 929 930 931 932 933 934 935

.. method:: Context.clear_flags()

   Resets all of the flags to :const:`0`.


.. method:: Context.copy()

   Return a duplicate of the context.

936 937 938
.. method:: Context.copy_decimal(num)

   Return a copy of the Decimal instance num.
939 940 941 942 943 944 945 946 947 948 949

.. method:: Context.create_decimal(num)

   Creates a new Decimal instance from *num* but using *self* as context. Unlike
   the :class:`Decimal` constructor, the context precision, rounding method, flags,
   and traps are applied to the conversion.

   This is useful because constants are often given to a greater precision than is
   needed by the application.  Another benefit is that rounding immediately
   eliminates unintended effects from digits beyond the current precision. In the
   following example, using unrounded inputs means that adding zero to a sum can
Christian Heimes's avatar
Christian Heimes committed
950 951 952
   change the result:

   .. doctest:: newcontext
953 954

      >>> getcontext().prec = 3
Christian Heimes's avatar
Christian Heimes committed
955 956 957 958
      >>> Decimal('3.4445') + Decimal('1.0023')
      Decimal('4.45')
      >>> Decimal('3.4445') + Decimal(0) + Decimal('1.0023')
      Decimal('4.44')
959

960 961 962
   This method implements the to-number operation of the IBM
   specification.  If the argument is a string, no leading or trailing
   whitespace is permitted.
963 964 965 966 967 968 969 970 971 972 973 974 975 976

.. method:: Context.Etiny()

   Returns a value equal to ``Emin - prec + 1`` which is the minimum exponent value
   for subnormal results.  When underflow occurs, the exponent is set to
   :const:`Etiny`.


.. method:: Context.Etop()

   Returns a value equal to ``Emax - prec + 1``.

The usual approach to working with decimals is to create :class:`Decimal`
instances and then apply arithmetic operations which take place within the
977
current context for the active thread.  An alternative approach is to use context
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
methods for calculating within a specific context.  The methods are similar to
those for the :class:`Decimal` class and are only briefly recounted here.


.. method:: Context.abs(x)

   Returns the absolute value of *x*.


.. method:: Context.add(x, y)

   Return the sum of *x* and *y*.


.. method:: Context.divide(x, y)

   Return *x* divided by *y*.


997
.. method:: Context.divide_int(x, y)
998

999
   Return *x* divided by *y*, truncated to an integer.
1000 1001


1002
.. method:: Context.divmod(x, y)
1003

1004
   Divides two numbers and returns the integer part of the result.
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025


.. method:: Context.minus(x)

   Minus corresponds to the unary prefix minus operator in Python.


.. method:: Context.multiply(x, y)

   Return the product of *x* and *y*.


.. method:: Context.plus(x)

   Plus corresponds to the unary prefix plus operator in Python.  This operation
   applies the context precision and rounding, so it is *not* an identity
   operation.


.. method:: Context.power(x, y[, modulo])

1026 1027
   Return ``x`` to the power of ``y``, reduced modulo ``modulo`` if
   given.
1028

1029 1030 1031 1032 1033
   With two arguments, compute ``x**y``.  If ``x`` is negative then
   ``y`` must be integral.  The result will be inexact unless ``y`` is
   integral and the result is finite and can be expressed exactly in
   'precision' digits.  The result should always be correctly rounded,
   using the rounding mode of the current thread's context.
1034

1035 1036
   With three arguments, compute ``(x**y) % modulo``.  For the three
   argument form, the following restrictions on the arguments hold:
1037

1038 1039 1040 1041
      - all three arguments must be integral
      - ``y`` must be nonnegative
      - at least one of ``x`` or ``y`` must be nonzero
      - ``modulo`` must be nonzero and have at most 'precision' digits
1042

1043 1044 1045 1046
   The result of ``Context.power(x, y, modulo)`` is identical to
   the result that would be obtained by computing ``(x**y) %
   modulo`` with unbounded precision, but is computed more
   efficiently.  It is always exact.
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063


.. method:: Context.remainder(x, y)

   Returns the remainder from integer division.

   The sign of the result, if non-zero, is the same as that of the original
   dividend.

.. method:: Context.subtract(x, y)

   Return the difference between *x* and *y*.

.. method:: Context.to_sci_string(x)

   Converts a number to a string using scientific notation.

1064
.. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074


.. _decimal-signals:

Signals
-------

Signals represent conditions that arise during computation. Each corresponds to
one context flag and one context trap enabler.

1075
The context flag is set whenever the condition is encountered. After the
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
computation, flags may be checked for informational purposes (for instance, to
determine whether a computation was exact). After checking the flags, be sure to
clear all flags before starting the next computation.

If the context's trap enabler is set for the signal, then the condition causes a
Python exception to be raised.  For example, if the :class:`DivisionByZero` trap
is set, then a :exc:`DivisionByZero` exception is raised upon encountering the
condition.


.. class:: Clamped

   Altered an exponent to fit representation constraints.

   Typically, clamping occurs when an exponent falls outside the context's
   :attr:`Emin` and :attr:`Emax` limits.  If possible, the exponent is reduced to
1092
   fit by adding zeros to the coefficient.
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184


.. class:: DecimalException

   Base class for other signals and a subclass of :exc:`ArithmeticError`.


.. class:: DivisionByZero

   Signals the division of a non-infinite number by zero.

   Can occur with division, modulo division, or when raising a number to a negative
   power.  If this signal is not trapped, returns :const:`Infinity` or
   :const:`-Infinity` with the sign determined by the inputs to the calculation.


.. class:: Inexact

   Indicates that rounding occurred and the result is not exact.

   Signals when non-zero digits were discarded during rounding. The rounded result
   is returned.  The signal flag or trap is used to detect when results are
   inexact.


.. class:: InvalidOperation

   An invalid operation was performed.

   Indicates that an operation was requested that does not make sense. If not
   trapped, returns :const:`NaN`.  Possible causes include::

      Infinity - Infinity
      0 * Infinity
      Infinity / Infinity
      x % 0
      Infinity % x
      x._rescale( non-integer )
      sqrt(-x) and x > 0
      0 ** 0
      x ** (non-integer)
      x ** Infinity      


.. class:: Overflow

   Numerical overflow.

   Indicates the exponent is larger than :attr:`Emax` after rounding has occurred.
   If not trapped, the result depends on the rounding mode, either pulling inward
   to the largest representable finite number or rounding outward to
   :const:`Infinity`.  In either case, :class:`Inexact` and :class:`Rounded` are
   also signaled.


.. class:: Rounded

   Rounding occurred though possibly no information was lost.

   Signaled whenever rounding discards digits; even if those digits are zero (such
   as rounding :const:`5.00` to :const:`5.0`).   If not trapped, returns the result
   unchanged.  This signal is used to detect loss of significant digits.


.. class:: Subnormal

   Exponent was lower than :attr:`Emin` prior to rounding.

   Occurs when an operation result is subnormal (the exponent is too small). If not
   trapped, returns the result unchanged.


.. class:: Underflow

   Numerical underflow with result rounded to zero.

   Occurs when a subnormal result is pushed to zero by rounding. :class:`Inexact`
   and :class:`Subnormal` are also signaled.

The following table summarizes the hierarchy of signals::

   exceptions.ArithmeticError(exceptions.Exception)
       DecimalException
           Clamped
           DivisionByZero(DecimalException, exceptions.ZeroDivisionError)
           Inexact
               Overflow(Inexact, Rounded)
               Underflow(Inexact, Rounded, Subnormal)
           InvalidOperation
           Rounded
           Subnormal

1185
.. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204


.. _decimal-notes:

Floating Point Notes
--------------------


Mitigating round-off error with increased precision
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The use of decimal floating point eliminates decimal representation error
(making it possible to represent :const:`0.1` exactly); however, some operations
can still incur round-off error when non-zero digits exceed the fixed precision.

The effects of round-off error can be amplified by the addition or subtraction
of nearly offsetting quantities resulting in loss of significance.  Knuth
provides two instructive examples where rounded floating point arithmetic with
insufficient precision causes the breakdown of the associative and distributive
Christian Heimes's avatar
Christian Heimes committed
1205 1206 1207
properties of addition:

.. doctest:: newcontext
1208 1209 1210 1211 1212 1213 1214

   # Examples from Seminumerical Algorithms, Section 4.2.2.
   >>> from decimal import Decimal, getcontext
   >>> getcontext().prec = 8

   >>> u, v, w = Decimal(11111113), Decimal(-11111111), Decimal('7.51111111')
   >>> (u + v) + w
Christian Heimes's avatar
Christian Heimes committed
1215
   Decimal('9.5111111')
1216
   >>> u + (v + w)
Christian Heimes's avatar
Christian Heimes committed
1217
   Decimal('10')
1218 1219 1220

   >>> u, v, w = Decimal(20000), Decimal(-6), Decimal('6.0000003')
   >>> (u*v) + (u*w)
Christian Heimes's avatar
Christian Heimes committed
1221
   Decimal('0.01')
1222
   >>> u * (v+w)
Christian Heimes's avatar
Christian Heimes committed
1223
   Decimal('0.0060000')
1224 1225

The :mod:`decimal` module makes it possible to restore the identities by
Christian Heimes's avatar
Christian Heimes committed
1226 1227 1228
expanding the precision sufficiently to avoid loss of significance:

.. doctest:: newcontext
1229 1230 1231 1232

   >>> getcontext().prec = 20
   >>> u, v, w = Decimal(11111113), Decimal(-11111111), Decimal('7.51111111')
   >>> (u + v) + w
Christian Heimes's avatar
Christian Heimes committed
1233
   Decimal('9.51111111')
1234
   >>> u + (v + w)
Christian Heimes's avatar
Christian Heimes committed
1235
   Decimal('9.51111111')
1236 1237 1238
   >>> 
   >>> u, v, w = Decimal(20000), Decimal(-6), Decimal('6.0000003')
   >>> (u*v) + (u*w)
Christian Heimes's avatar
Christian Heimes committed
1239
   Decimal('0.0060000')
1240
   >>> u * (v+w)
Christian Heimes's avatar
Christian Heimes committed
1241
   Decimal('0.0060000')
1242 1243 1244 1245 1246 1247 1248


Special values
^^^^^^^^^^^^^^

The number system for the :mod:`decimal` module provides special values
including :const:`NaN`, :const:`sNaN`, :const:`-Infinity`, :const:`Infinity`,
1249
and two zeros, :const:`+0` and :const:`-0`.
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271

Infinities can be constructed directly with:  ``Decimal('Infinity')``. Also,
they can arise from dividing by zero when the :exc:`DivisionByZero` signal is
not trapped.  Likewise, when the :exc:`Overflow` signal is not trapped, infinity
can result from rounding beyond the limits of the largest representable number.

The infinities are signed (affine) and can be used in arithmetic operations
where they get treated as very large, indeterminate numbers.  For instance,
adding a constant to infinity gives another infinite result.

Some operations are indeterminate and return :const:`NaN`, or if the
:exc:`InvalidOperation` signal is trapped, raise an exception.  For example,
``0/0`` returns :const:`NaN` which means "not a number".  This variety of
:const:`NaN` is quiet and, once created, will flow through other computations
always resulting in another :const:`NaN`.  This behavior can be useful for a
series of computations that occasionally have missing inputs --- it allows the
calculation to proceed while flagging specific results as invalid.

A variant is :const:`sNaN` which signals rather than remaining quiet after every
operation.  This is a useful return value when an invalid result needs to
interrupt a calculation for special handling.

Christian Heimes's avatar
Christian Heimes committed
1272 1273 1274 1275 1276 1277 1278
The behavior of Python's comparison operators can be a little surprising where a
:const:`NaN` is involved.  A test for equality where one of the operands is a
quiet or signaling :const:`NaN` always returns :const:`False` (even when doing
``Decimal('NaN')==Decimal('NaN')``), while a test for inequality always returns
:const:`True`.  An attempt to compare two Decimals using any of the ``<``,
``<=``, ``>`` or ``>=`` operators will raise the :exc:`InvalidOperation` signal
if either operand is a :const:`NaN`, and return :const:`False` if this signal is
Christian Heimes's avatar
Christian Heimes committed
1279
not trapped.  Note that the General Decimal Arithmetic specification does not
Christian Heimes's avatar
Christian Heimes committed
1280 1281 1282 1283 1284
specify the behavior of direct comparisons; these rules for comparisons
involving a :const:`NaN` were taken from the IEEE 854 standard (see Table 3 in
section 5.7).  To ensure strict standards-compliance, use the :meth:`compare`
and :meth:`compare-signal` methods instead.

1285 1286 1287 1288 1289 1290 1291 1292 1293
The signed zeros can result from calculations that underflow. They keep the sign
that would have resulted if the calculation had been carried out to greater
precision.  Since their magnitude is zero, both positive and negative zeros are
treated as equal and their sign is informational.

In addition to the two signed zeros which are distinct yet equal, there are
various representations of zero with differing precisions yet equivalent in
value.  This takes a bit of getting used to.  For an eye accustomed to
normalized floating point representations, it is not immediately obvious that
Christian Heimes's avatar
Christian Heimes committed
1294
the following calculation returns a value equal to zero:
1295 1296

   >>> 1 / Decimal('Infinity')
Christian Heimes's avatar
Christian Heimes committed
1297
   Decimal('0E-1000000026')
1298

1299
.. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336


.. _decimal-threads:

Working with threads
--------------------

The :func:`getcontext` function accesses a different :class:`Context` object for
each thread.  Having separate thread contexts means that threads may make
changes (such as ``getcontext.prec=10``) without interfering with other threads.

Likewise, the :func:`setcontext` function automatically assigns its target to
the current thread.

If :func:`setcontext` has not been called before :func:`getcontext`, then
:func:`getcontext` will automatically create a new context for use in the
current thread.

The new context is copied from a prototype context called *DefaultContext*. To
control the defaults so that each thread will use the same values throughout the
application, directly modify the *DefaultContext* object. This should be done
*before* any threads are started so that there won't be a race condition between
threads calling :func:`getcontext`. For example::

   # Set applicationwide defaults for all threads about to be launched
   DefaultContext.prec = 12
   DefaultContext.rounding = ROUND_DOWN
   DefaultContext.traps = ExtendedContext.traps.copy()
   DefaultContext.traps[InvalidOperation] = 1
   setcontext(DefaultContext)

   # Afterwards, the threads can be started
   t1.start()
   t2.start()
   t3.start()
    . . .

1337
.. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370


.. _decimal-recipes:

Recipes
-------

Here are a few recipes that serve as utility functions and that demonstrate ways
to work with the :class:`Decimal` class::

   def moneyfmt(value, places=2, curr='', sep=',', dp='.',
                pos='', neg='-', trailneg=''):
       """Convert Decimal to a money formatted string.

       places:  required number of places after the decimal point
       curr:    optional currency symbol before the sign (may be blank)
       sep:     optional grouping separator (comma, period, space, or blank)
       dp:      decimal point indicator (comma or period)
                only specify as blank when places is zero
       pos:     optional sign for positive numbers: '+', space or blank
       neg:     optional sign for negative numbers: '-', '(', space or blank
       trailneg:optional trailing minus indicator:  '-', ')', space or blank

       >>> d = Decimal('-1234567.8901')
       >>> moneyfmt(d, curr='$')
       '-$1,234,567.89'
       >>> moneyfmt(d, places=0, sep='.', dp='', neg='', trailneg='-')
       '1.234.568-'
       >>> moneyfmt(d, curr='$', neg='(', trailneg=')')
       '($1,234,567.89)'
       >>> moneyfmt(Decimal(123456789), sep=' ')
       '123 456 789.00'
       >>> moneyfmt(Decimal('-0.02'), neg='<', trailneg='>')
Christian Heimes's avatar
Christian Heimes committed
1371
       '<0.02>'
1372 1373

       """
Christian Heimes's avatar
Christian Heimes committed
1374 1375
       q = Decimal(10) ** -places      # 2 places --> '0.01'
       sign, digits, exp = value.quantize(q).as_tuple()  
1376 1377 1378 1379 1380 1381
       result = []
       digits = map(str, digits)
       build, next = result.append, digits.pop
       if sign:
           build(trailneg)
       for i in range(places):
Christian Heimes's avatar
Christian Heimes committed
1382
           build(next() if digits else '0')
1383
       build(dp)
Christian Heimes's avatar
Christian Heimes committed
1384 1385
       if not digits:
           build('0')
1386 1387 1388 1389 1390 1391 1392 1393
       i = 0
       while digits:
           build(next())
           i += 1
           if i == 3 and digits:
               i = 0
               build(sep)
       build(curr)
Christian Heimes's avatar
Christian Heimes committed
1394 1395
       build(neg if sign else pos)
       return ''.join(reversed(result))
1396 1397 1398 1399

   def pi():
       """Compute Pi to the current precision.

1400
       >>> print(pi())
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
       3.141592653589793238462643383

       """
       getcontext().prec += 2  # extra digits for intermediate steps
       three = Decimal(3)      # substitute "three=3.0" for regular floats
       lasts, t, s, n, na, d, da = 0, three, 3, 1, 0, 0, 24
       while s != lasts:
           lasts = s
           n, na = n+na, na+8
           d, da = d+da, da+32
           t = (t * n) / d
           s += t
       getcontext().prec -= 2
       return +s               # unary plus applies the new precision

   def exp(x):
       """Return e raised to the power of x.  Result type matches input type.

1419
       >>> print(exp(Decimal(1)))
1420
       2.718281828459045235360287471
1421
       >>> print(exp(Decimal(2)))
1422
       7.389056098930650227230427461
1423
       >>> print(exp(2.0))
1424
       7.38905609893
1425
       >>> print(exp(2+0j))
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442
       (7.38905609893+0j)

       """
       getcontext().prec += 2
       i, lasts, s, fact, num = 0, 0, 1, 1, 1
       while s != lasts:
           lasts = s    
           i += 1
           fact *= i
           num *= x     
           s += num / fact   
       getcontext().prec -= 2        
       return +s

   def cos(x):
       """Return the cosine of x as measured in radians.

1443
       >>> print(cos(Decimal('0.5')))
1444
       0.8775825618903727161162815826
1445
       >>> print(cos(0.5))
1446
       0.87758256189
1447
       >>> print(cos(0.5+0j))
1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465
       (0.87758256189+0j)

       """
       getcontext().prec += 2
       i, lasts, s, fact, num, sign = 0, 0, 1, 1, 1, 1
       while s != lasts:
           lasts = s    
           i += 2
           fact *= i * (i-1)
           num *= x * x
           sign *= -1
           s += num / fact * sign 
       getcontext().prec -= 2        
       return +s

   def sin(x):
       """Return the sine of x as measured in radians.

1466
       >>> print(sin(Decimal('0.5')))
1467
       0.4794255386042030002732879352
1468
       >>> print(sin(0.5))
1469
       0.479425538604
1470
       >>> print(sin(0.5+0j))
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
       (0.479425538604+0j)

       """
       getcontext().prec += 2
       i, lasts, s, fact, num, sign = 1, 0, x, 1, x, 1
       while s != lasts:
           lasts = s    
           i += 2
           fact *= i * (i-1)
           num *= x * x
           sign *= -1
           s += num / fact * sign 
       getcontext().prec -= 2        
       return +s


1487
.. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1488 1489 1490 1491 1492 1493 1494 1495 1496 1497


.. _decimal-faq:

Decimal FAQ
-----------

Q. It is cumbersome to type ``decimal.Decimal('1234.5')``.  Is there a way to
minimize typing when using the interactive interpreter?

Christian Heimes's avatar
Christian Heimes committed
1498
A. Some users abbreviate the constructor to just a single letter:
1499 1500 1501

   >>> D = decimal.Decimal
   >>> D('1.23') + D('3.45')
Christian Heimes's avatar
Christian Heimes committed
1502
   Decimal('4.68')
1503 1504 1505 1506 1507 1508

Q. In a fixed-point application with two decimal places, some inputs have many
places and need to be rounded.  Others are not supposed to have excess digits
and need to be validated.  What methods should be used?

A. The :meth:`quantize` method rounds to a fixed number of decimal places. If
Christian Heimes's avatar
Christian Heimes committed
1509
the :const:`Inexact` trap is set, it is also useful for validation:
1510 1511 1512 1513

   >>> TWOPLACES = Decimal(10) ** -2       # same as Decimal('0.01')

   >>> # Round to two places
Christian Heimes's avatar
Christian Heimes committed
1514 1515
   >>> Decimal('3.214').quantize(TWOPLACES)
   Decimal('3.21')
1516 1517

   >>> # Validate that a number does not exceed two places 
Christian Heimes's avatar
Christian Heimes committed
1518 1519
   >>> Decimal('3.21').quantize(TWOPLACES, context=Context(traps=[Inexact]))
   Decimal('3.21')
1520

Christian Heimes's avatar
Christian Heimes committed
1521
   >>> Decimal('3.214').quantize(TWOPLACES, context=Context(traps=[Inexact]))
1522 1523
   Traceback (most recent call last):
      ...
Christian Heimes's avatar
Christian Heimes committed
1524
   Inexact
1525 1526 1527 1528

Q. Once I have valid two place inputs, how do I maintain that invariant
throughout an application?

Christian Heimes's avatar
Christian Heimes committed
1529 1530 1531
A. Some operations like addition, subtraction, and multiplication by an integer
will automatically preserve fixed point.  Others operations, like division and
non-integer multiplication, will change the number of decimal places and need to
Christian Heimes's avatar
Christian Heimes committed
1532
be followed-up with a :meth:`quantize` step:
Christian Heimes's avatar
Christian Heimes committed
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547

    >>> a = Decimal('102.72')           # Initial fixed-point values
    >>> b = Decimal('3.17')
    >>> a + b                           # Addition preserves fixed-point
    Decimal('105.89')
    >>> a - b
    Decimal('99.55')
    >>> a * 42                          # So does integer multiplication
    Decimal('4314.24')
    >>> (a * b).quantize(TWOPLACES)     # Must quantize non-integer multiplication
    Decimal('325.62')
    >>> (b / a).quantize(TWOPLACES)     # And quantize division
    Decimal('0.03')

In developing fixed-point applications, it is convenient to define functions
Christian Heimes's avatar
Christian Heimes committed
1548
to handle the :meth:`quantize` step:
Christian Heimes's avatar
Christian Heimes committed
1549 1550 1551 1552 1553 1554 1555 1556 1557 1558

    >>> def mul(x, y, fp=TWOPLACES):
    ...     return (x * y).quantize(fp)
    >>> def div(x, y, fp=TWOPLACES):
    ...     return (x / y).quantize(fp)

    >>> mul(a, b)                       # Automatically preserve fixed-point
    Decimal('325.62')
    >>> div(b, a)
    Decimal('0.03')
1559 1560 1561 1562 1563 1564 1565

Q. There are many ways to express the same value.  The numbers :const:`200`,
:const:`200.000`, :const:`2E2`, and :const:`.02E+4` all have the same value at
various precisions. Is there a way to transform them to a single recognizable
canonical value?

A. The :meth:`normalize` method maps all equivalent values to a single
Christian Heimes's avatar
Christian Heimes committed
1566
representative:
1567 1568 1569

   >>> values = map(Decimal, '200 200.000 2E2 .02E+4'.split())
   >>> [v.normalize() for v in values]
Christian Heimes's avatar
Christian Heimes committed
1570
   [Decimal('2E+2'), Decimal('2E+2'), Decimal('2E+2'), Decimal('2E+2')]
1571 1572 1573 1574 1575 1576 1577 1578 1579

Q. Some decimal values always print with exponential notation.  Is there a way
to get a non-exponential representation?

A. For some values, exponential notation is the only way to express the number
of significant places in the coefficient.  For example, expressing
:const:`5.0E+3` as :const:`5000` keeps the value constant but cannot show the
original's two-place significance.

Christian Heimes's avatar
Christian Heimes committed
1580
If an application does not care about tracking significance, it is easy to
Christian Heimes's avatar
Christian Heimes committed
1581
remove the exponent and trailing zeroes, losing significance, but keeping the
Christian Heimes's avatar
Christian Heimes committed
1582
value unchanged:
Christian Heimes's avatar
Christian Heimes committed
1583 1584 1585 1586 1587 1588 1589

    >>> def remove_exponent(d):
    ...     return d.quantize(Decimal(1)) if d == d.to_integral() else d.normalize()

    >>> remove_exponent(Decimal('5E+3'))
    Decimal('5000')

1590 1591 1592 1593
Q. Is there a way to convert a regular float to a :class:`Decimal`?

A. Yes, all binary floating point numbers can be exactly expressed as a
Decimal.  An exact conversion may take more precision than intuition would
Christian Heimes's avatar
Christian Heimes committed
1594 1595 1596
suggest, so we trap :const:`Inexact` to signal a need for more precision:

.. testcode::
1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608

    def float_to_decimal(f):
        "Convert a floating point number to a Decimal with no loss of information"
        n, d = f.as_integer_ratio()
        with localcontext() as ctx:
            ctx.traps[Inexact] = True
            while True:
                try:
                   return Decimal(n) / Decimal(d)
                except Inexact:
                    ctx.prec += 1

Christian Heimes's avatar
Christian Heimes committed
1609 1610
.. doctest::

1611
    >>> float_to_decimal(math.pi)
Christian Heimes's avatar
Christian Heimes committed
1612
    Decimal('3.141592653589793115997963468544185161590576171875')
1613 1614

Q. Why isn't the :func:`float_to_decimal` routine included in the module?
1615 1616 1617

A. There is some question about whether it is advisable to mix binary and
decimal floating point.  Also, its use requires some care to avoid the
Christian Heimes's avatar
Christian Heimes committed
1618
representation issues associated with binary floating point:
1619

1620
   >>> float_to_decimal(1.1)
Christian Heimes's avatar
Christian Heimes committed
1621
   Decimal('1.100000000000000088817841970012523233890533447265625')
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637

Q. Within a complex calculation, how can I make sure that I haven't gotten a
spurious result because of insufficient precision or rounding anomalies.

A. The decimal module makes it easy to test results.  A best practice is to
re-run calculations using greater precision and with various rounding modes.
Widely differing results indicate insufficient precision, rounding mode issues,
ill-conditioned inputs, or a numerically unstable algorithm.

Q. I noticed that context precision is applied to the results of operations but
not to the inputs.  Is there anything to watch out for when mixing values of
different precisions?

A. Yes.  The principle is that all values are considered to be exact and so is
the arithmetic on those values.  Only the results are rounded.  The advantage
for inputs is that "what you type is what you get".  A disadvantage is that the
Christian Heimes's avatar
Christian Heimes committed
1638 1639 1640
results can look odd if you forget that the inputs haven't been rounded:

.. doctest:: newcontext
1641 1642

   >>> getcontext().prec = 3
Christian Heimes's avatar
Christian Heimes committed
1643
   >>> Decimal('3.104') + Decimal('2.104')
Christian Heimes's avatar
Christian Heimes committed
1644
   Decimal('5.21')
Christian Heimes's avatar
Christian Heimes committed
1645
   >>> Decimal('3.104') + Decimal('0.000') + Decimal('2.104')
Christian Heimes's avatar
Christian Heimes committed
1646
   Decimal('5.20')
1647 1648

The solution is either to increase precision or to force rounding of inputs
Christian Heimes's avatar
Christian Heimes committed
1649 1650 1651
using the unary plus operation:

.. doctest:: newcontext
1652 1653 1654

   >>> getcontext().prec = 3
   >>> +Decimal('1.23456789')      # unary plus triggers rounding
Christian Heimes's avatar
Christian Heimes committed
1655
   Decimal('1.23')
1656 1657

Alternatively, inputs can be rounded upon creation using the
Christian Heimes's avatar
Christian Heimes committed
1658
:meth:`Context.create_decimal` method:
1659 1660

   >>> Context(prec=5, rounding=ROUND_DOWN).create_decimal('1.2345678')
Christian Heimes's avatar
Christian Heimes committed
1661
   Decimal('1.2345')
1662