Tagged Questions

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 ...
5
votes
3answers
589 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
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 ...
3
votes
5answers
410 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
4answers
605 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
2answers
91 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 ...
0
votes
1answer
37 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 ...