Handling very very small numbers in Python

Your result is incorrect because decimal has precision too (decimal is fixed point math), so you get underflow issue here too:

Decimal('.01')**Decimal('1e6')

Decimal('0E-1000026')

But:

getcontext().prec = 1000000000   # sets precision to 1000000000
Decimal('.01')**Decimal('1e6')

Decimal('1E-2000000')

You can fix your issue by manualy setting precision as in example above or manually calculate powers, for example:

Decimal('.01')**Decimal('1e6')

can be converted to

Decimal('1e-2') ** Decimal('1e6')

and later to

1 ** ((-2) ** 1e6) = 1 ** (-2000000)

Decimal module documentation


Why not use logarithms?

You want to compute:

RESULT  = x1 * x2 * x3 * x4 ... * xn

Represent that as:

ln(RESULT) = ln(x1) + ln(x2) + ln(x3) + ln(x4) ... + ln(xn)

Very small positive numbers store nicely into floats if you store their natural logarithm:

ln(0.000001) ≈ -13.81551

Instead of storing the numbers themselves, store the log of the values.

Suppose you add ln(0.0000011) to itself 10^6 times. You get approximately -13815510.558. Less precision is lost on that as a float than 0.000001^(10^6)

Whatever number you get in the end, you know that your result is just the number e raised to that power. For example, RESULT = e^-13815510.558

You can use the code below:

import math

class TinyNum:
    def __init__(self, other=None, *, pow=None):
        """
        x = TinyNum(0.0000912922)
        x = TinyNum("0.12345")     # strings are okay too
        x = TinyNum(pow = -110)    # e^-110
        y = TinyNum(x)             # copy constructor
        """
        if other:
            if isinstance(other, type(self)):
                self._power = other._power
            else:
                self._power = math.log(float(str(other)))
        else: # other == None
            self._power = float(str(pow))

    def __str__(self):
        return "e^"+str(self._power)

    def __mul__(lhs, rhs):
        rhs = type(lhs)(rhs)
        return type(lhs)(pow=lhs._power + rhs._power)

    def __rmul__(rhs, lhs):
        lhs = type(rhs)(lhs)
        return type(rhs)(pow=lhs._power + rhs._power)

    def __imul__(total, margin):
        total._power = total._power + type(total)(margin)._power


lyst = [
    0.00841369,
    0.004766949,
    0.003188046,
    0.002140916,
    0.004780032
]

sneaky_lyst = map(TinyNum, lyst)

print(math.prod(sneaky_lyst))

The message printed to the console is:

e^-27.36212057035477