I have this equation:
import sympy as sp
x = sp.Symbol(‘x’, real = True)
fx = sp.log(x,3)
sp.diff(fx, x)
Sympy returns:
1/(x*log(3))
Sympy should return:
1/(x*ln(3))
Why is Sympy returning the log function rather than the natural log function?