Tagged Questions
The arbitrary-precision tag has no wiki summary.
11
votes
2answers
663 views
Large numbers in Pascal (Delphi)
Can I work with large numbers (more than 10^400) with built-in method in Delphi?
11
votes
13answers
3k views
What programming languages support arbitrary precision arithmetic?
What programming languages support arbitrary precision arithmetic and could you give a short example of how to print an arbitrary number of digits?
10
votes
6answers
470 views
How to work on big integers that don't fit into any of language's data structures
I'm trying to solve a programming contest's preliminary problems and for 2 of the problems I have to calculate and print some very big integers(like 100!, 2^100).
I also need a fast way to calculate ...
9
votes
2answers
193 views
Handle arbitrary length integers in C++
Can someone tell me of a good C++ library for handling (doing operations etc...) with arbitrarily large numbers (it can be a library that handles arbitrary precision floats too, but handling integers ...
8
votes
6answers
278 views
Python computing error
I’m using the API mpmath to compute the following sum
Let us consider the serie u0, u1, u2 defined by:
u0 = 3/2 = 1,5
u1 = 5/3 = 1,6666666…
un+1 = 2003 - 6002/un + 4000/un un-1
The serie ...
8
votes
2answers
279 views
Exact real arithmetic and lazy list performance in C++/Haskell
I recently came across the subject of exact real arithmetic after reading this paper and this paper.
I have found a number of papers that discuss realizations of exact arithmetic using signed digit ...
6
votes
1answer
520 views
What's the best (for speed) arbitrary-precision library for C++?
I need the fastest library that is available for C++. My platform will be x86 and x86-64 which supports floating points.
5
votes
3answers
95 views
How to determine before hand if an unsigned calculation may possibly overflow?
As a personal project I am working on implementing an Arbitrary Precision number type for a pet project of mine.
I already know about all the popular, tested and robust libraries out there that do ...
5
votes
2answers
389 views
What is the fastest semi-arbitrary precision math library?
I'm using long double in a C program to compute 2D images of the Mandelbrot Set but wish to have further precision to zoom deeper.
Are there any performance gains to be had from an arbitrary ...
5
votes
3answers
588 views
Bignum implementation that has efficient addition of small integers
I have been using python's native bignums for an algorithm and decided to try and speed it up by converting it to C++. When I used long longs, the C++ was about 100x faster than the python, but when I ...
4
votes
3answers
659 views
How to generate random 64-bit value as decimal string
Oauth requires a random 64-bit, unsigned number encoded as an ASCII string in decimal format. Can you guys help me achieve this with php?
Thanks
4
votes
3answers
199 views
how to perform high precision calculations in D?
For some universitary work i have to approximate some numbers - like the Euler one with series. Therefore i have to add very small numbers, but i have problems with the precision. If the number ist ...
4
votes
4answers
429 views
I would like to add 2 arbitrarily sized integers in C++. How can I go about doing this?
I would like to add 2 arbitrarily sized integers in C++. How can I go about doing this?
4
votes
2answers
437 views
How can I use arbitrary length integers in Perl?
Is there any standard way to use integers of arbitrary length in Perl? I am working on code that generates x64 assembly for tests, and I'm tired of manipulating 32 bits at a time.
I'm using Perl ...
4
votes
2answers
591 views
Fractions with decimal precision
Is there a pure python implementation of fractions.Fraction that supports longs as numerator and denominator? Unfortunately, exponentiation appears to be coded in to return a float (ack!!!), which ...
4
votes
7answers
563 views
Has arbitrary-precision arithmetic affected numerical analysis software?
Has arbitrary-precision arithmetic affected numerical analysis software?
I feel that most numerical analysis software keeps on using the same floats and doubles.
If I'm right, I'd love to know the ...
3
votes
5answers
408 views
numpy arbitrary precision linear algebra
I have a numpy 2d array [medium/large sized - say 500x500]. I want to find the eigenvalues of the element-wise exponent of it. The problem is that some of the values are quite negative (-800,-1000, ...
3
votes
2answers
229 views
JavaScript pack integers and calculate arbitrary precision float:
I need to do the following in JavaScript and so far been unable to find solutions to do it seamlessly:
Grab two integers in a specific order and pack them like Python's struct module.
This packed ...
3
votes
1answer
98 views
Arbitrary Precision Arithmetic (Bignum) for 16-bit processor
I'm developing an application for a 16-bit embedded device (80251 microcontroller), and I need arbitrary precision arithmetic. Does anyone know of a library that works for the 8051 or 80251?
GMP ...
3
votes
1answer
135 views
Converting mpfr_t (or any other arbitrary precision library type) to __float128
I guess I have two questions really.
1) I was wondering if anyone knows a way to convert mpfr_t types into __float128 types in GCC. I've looked around and found a thread on the mpfr bugfixes site ...
3
votes
4answers
604 views
What class to use for money representation?
What class should I use for representation of money to avoid most rounding errors?
Should I use Decimal, or a simple built-in number?
Is there any existing Money class with support for currency ...
2
votes
0answers
95 views
Arbitrary long integers in Delphi - NX library?
just looking for some implementation of arbitrary large integer numbers with some basic arithmetic (add, mul, div at least) for Delphi.
All solutions I did already found are either painfully ...
2
votes
5answers
74 views
Can Java floating point hazards be avoided with rounding?
It is known that java floating point primitive values are not to be used when arbitrary precision is required. Goetz explained the problem in his excellent article.
Imagine we need to achieve ...
2
votes
2answers
55 views
Alternatives for arbitrary-precision decimals in J2ME
We're making some modifications to a legacy project using J2ME.
Until now, decimal numbers were treated as Strings since no arithmetic operations were needed. The values were only displayed as text.
...
2
votes
2answers
89 views
Python Native Arbitrary Precision
Is there any way of compiling Python's interpretter in such a way that it could use a native (c) arbitrary precision library so that Python could use arbitrary precision as if it was a normal number ...
2
votes
2answers
73 views
Implementing Decimal/arbitrary arithmetic using integer-like data types
This probably has probably been asked before, but I couldn't find anything relevant.
Would it be possible/performant to implement a kind of arbitrary/decimal arithmatic through a specialized class or ...
2
votes
2answers
209 views
Restore a number from several its remainders (chinese remainder theorem)
I have a long integer number, but it is stored not in decimal form, but as set of remainders.
So, I have not the N number, but set of such remainders:
r_1 = N % 2147483743
r_2 = N % 2147483713
r_3 ...
2
votes
3answers
1k views
Convert large hex string to decimal string
I need to convert a large (too large for the built-in data types) hex string to a string with it's decimal representation. For example:
std::string sHex = "07AA17C660F3DD1D2A1B48F1B746C148";
...
2
votes
2answers
257 views
Arbitrary precision number formatting / money_format?
Is there an arbitrary-precision alternative to money_format available that could take a string instead of a float as a parameter?
It's not that I plan on doing calculations on trillions of monetary ...
2
votes
1answer
136 views
Large integer and arbitrary/multi precision floats for Vala
Is there a way to use big integers or arbitrary precision types in vala?
2
votes
5answers
503 views
Arbitrary precision arithmetic with Ruby
How the heck does Ruby do this? Does Jörg or anyone else know what's happening behind the scenes?
Unfortunately I don't know C very well so bignum.c is of little help to me. I was just kind of ...
1
vote
2answers
121 views
Big Integer Arithmetic in Java - Homework
So this is a homework assignment, and I've been working on it for about ~10 hours total. I'd just like some tips to see where I'm going wrong. So my assignment is to essentially make a calculator for ...
1
vote
2answers
115 views
Logarithm of the very-very large number
I have to find log of very large number.
I do this in C++
I have already made a function of multiplication, addition, subtraction, division, but there were problems with the logarithm. I do not need ...
1
vote
1answer
63 views
Arbitrary Precision for decimals in C# help?
Here is my current code for computing Pi using the chudnovsky method in c#:
using System;
using System.Diagnostics;
using System.IO;
using java.math;
namespace pi.chudnovsky
{
public class ...
1
vote
2answers
109 views
Arbitrary precision arithmetic with GMP
I'm using the GMP library to make a Pi program, that will calculate about 7 trillion digits of Pi. Problem is, I can't figure out how many bits are needed to hold that many decimal places.
1
vote
0answers
167 views
BigInteger in objective c [closed]
Possible Duplicate:
biginteger on Objective-c
Is there any NS* class for arbitrary size integers in objective c like BigInteger in C#? if not, is gmp a good library to import or is there a ...
1
vote
3answers
620 views
binary to decimal base shift
I need an algorithm that converts an arbitrarily sized unsigned integer (which is stored in binary format) to a decimal one. i.e. to make it human-readable ;)
I currently use the maybe (or obviously) ...
1
vote
2answers
81 views
Creating a numerical data type exceeding its normal size
There is a calculator program that I have came across on Windows long ago. I couldn't recall its name, but one impressive thing about it is that it can calculate numbers up to 512 bytes size. ...
1
vote
1answer
89 views
Setting precision in an IronPython app?
I've read around enough to see that getcontext().prec is how to set the precision in a normal python file.
getcontext().prec = 100;
for i in range(1, 100):
print 1.0 / i;
But when I execute ...
1
vote
2answers
376 views
C# unlimited significant decimal digits (arbitrary precision) without java [closed]
Possible Duplicate:
what is the equivalent for java class : BigDecimal in c#
I know in this post: Arbitrary precision decimals in C#? says to use java.math.BigDecimal, but I don't have J# ...
1
vote
2answers
337 views
Need Arbitrary-Precision-Arithmetic in C#
I'm in need of floating point calculations for C# that can correctly store up to maybe 500 digits/decimals. Is there any built-in-type for this, do I have to create it myself, any library available or ...
1
vote
1answer
150 views
Rounding using arbitrary precision libraries in PHP
I asked a question earlier about how to deal with rounding issues with floating point numbers in PHP, and was pointed to the bc and gmp libraries.
I've looked at the functions in these libraries but ...
1
vote
1answer
285 views
How much precision for a bcmath PHP library?
I'm writing a PHP library that has a Number class that uses the bcmath extension for arbitrary precision.
I have two questions:
How much slower is bcmath compared to using the built-in int and ...
0
votes
0answers
37 views
arbitrary precision in C [closed]
I wish to write a simple C code which adds 2 strings of arbitrary length.
(I know I can use a arbitrary precision library but I don't wish to do that. I just want to know the underlying logic behind ...
0
votes
1answer
35 views
Printing formatted arbitrary precision decimals in python
Python's arbitrary precision decimals are lovely, but I can't seem to find a way to print them in a nicely formatted way. For example, if I compute the following expression:
>>> pow(2,70) -2
...
0
votes
2answers
40 views
Is the JavaScript Number an arbitrary-precision number? [closed]
If I write the number literal 1.34 in JavaScript, it tells me its constructor is named Number. Does JavaScript use arbitrary-precision arithmetic with Number literals?
0
votes
2answers
51 views
Check if bit is set on BigNum
I have a bignum formatted like a string like this: "123456789123456789123456789" and I need to check if a specified bit is set. The components are single digits in this string.
Usually I would do it ...
0
votes
1answer
47 views
MSVC++ “official” arbitrary precision library
I'm looking for an MSVC++ specific arbitrary precision library. Since I don't need cross platform compatibility for what I'm working, I'd rather not have the mess of it all.
I tried looking at NTL ...
0
votes
1answer
96 views
General Question About Arbitrary-Precision Math in PHP
I'm currently trying to figure out how to work with arbitrary-precision numbers in PHP. So I guess my first question would be what exactly is arbitrary-precision math. I tried Googling for a good ...
0
votes
0answers
33 views
GC friendly arbitrary precision numbers
The fastest arbitrary precision rational and floating-point number library is said to be GMP, but in addition to portability problems, it has the drawback that it requires a memory manager with the ...