python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
IntelliJ Javascript debugger for big.js - show value it represents
I have big(10) for example (where big.js is helpful in dealing with the precision problems that JS numbers have). When I'm debugging in IntelliJ and hover over this it shows Big {s: 1, e: 1, ... othe...
HankCa
Votes: 0
Answers: 0
1e400 == 10**400 is False?
In Python, 1e400 evaluates to inf, but 10**400 prints out just fine. Theoretically, 1e(x) is supposed to be 10**x, but why and when does this break down?
In a related vein, 1e5 == 10**5 evaluates to T...

ichthyophile
Votes: 0
Answers: 1
Negative exponent in division in Sympy
I make a division
fn=n/3**(n+1)
But the view has
fn=3**(-n-1)*n
Please tell me how to force as fn=n/3**(n+1)

Andrew Mir
Votes: 0
Answers: 1
Why my natural log function is so imprecise?
Firstly, I'm using this approximation of a natural log. Or look here (4.1.27) for a better representation of formula.
Here's my implementation:
constexpr double eps = 1e-12;
constexpr double my_exp(c...
Learpcs
Votes: 0
Answers: 2