Category:Arbitrary precision: Difference between revisions

From Rosetta Code
Content added Content deleted
m (Should be a subcategory of sol by task, wp-ified link)
m (more descriptive content)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
[[Category:Solutions by Programming Task]]'''Arbitrary-precision arithmetic''' is provided natively by some languages ([[Lisp]], [[Haskell]]) and through libraries such as [[:Category:GMP|GMP]] in others.
[[Category:Mathematical operations]]'''Arbitrary-precision arithmetic''' is a type of calculation that is involves numbers with the number of digits of precision are limited only by the available memory of the system (as opposed to fixed-precision arithmetic, where precision is determined by a fixed number of storage bits used for numbers). Arbitrary-precision arithmetic is sometimes called '''bignum arithmetic''' and is provided natively by some languages (Such as [[Lisp]], [[Haskell]], and [[Rexx]]) and through libraries such as [[:Category:GMP|GMP]] in others.


==See also==
==See also==

Latest revision as of 11:36, 6 January 2013

Arbitrary-precision arithmetic is a type of calculation that is involves numbers with the number of digits of precision are limited only by the available memory of the system (as opposed to fixed-precision arithmetic, where precision is determined by a fixed number of storage bits used for numbers). Arbitrary-precision arithmetic is sometimes called bignum arithmetic and is provided natively by some languages (Such as Lisp, Haskell, and Rexx) and through libraries such as GMP in others.

See also

Subcategories

This category has only the following subcategory.

G