multipleprecision
Multiple-precision arithmetic, also called arbitrary-precision arithmetic, is the area of numerical computation that handles numbers with precision beyond the native word size of a computer. It allows exact integers of unbounded size and floating-point numbers with as much precision as needed, at the cost of greater memory use and slower computations.
Implementations typically represent numbers as arrays of limbs in a fixed base (for example 2^32 or 2^64).
Algorithms for basic operations include naive methods for small operands and advanced techniques for large ones.
Common software tools include GMP for general integer and rational arithmetic and MPFR for correctly rounded
Applications span computational number theory, cryptography, exact scientific computation, and symbolic mathematics, where fixed precision cannot