hey so I am trying to calculate the amount of possible combinations of a 2000x2000 rubik's cube, and i written this code in python to calculate it, as online calculators i use and physical calculators all yielded no results. Do i need a beefier computer? or is this just simply unachievable?
the actual equation is 10^(((3.26017)*((2.00214)^(2000)))-6.51938), by normal calculator notation. If any of you can calculate it for me, please send me like a copy paste thing of the code if possible, thanks.
import decimal
>>> decimal.getcontext().prec = 10000
>>> decimal.Decimal(10)**((decimal.Decimal(3.26017))*((decimal.Decimal(2.00214))**(decimal.Decimal(2000))))-(decimal.Decimal(6.51938))
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
decimal.Decimal(10)**((decimal.Decimal(3.26017))*((decimal.Decimal(2.00214))**(decimal.Decimal(2000))))-(decimal.Decimal(6.51938))
decimal.Overflow: [<class 'decimal.Overflow'>]