I'm having some problems with current SymPy assumptions. Check out this thread. One of the hints said to use the adoption module (link here ).
I tried to do the following calculation: $ \ lim_ {x \ to \ infty} \ frac {\ ln {x}} {x ^ k} $. I want to evaluate this limit for $ k> 0 $.
So, I tried this:
with assuming(k>0): limit((log(x))/(x**k),x,oo)
I also tried this:
eval(limit((log(x))/(x**k),x,oo),k>0)
But regardless, I get this error:
NotImplementedError: Result depends on the sign of -sign(k)
When
with assume(k>0): limit((log(x))/(x**k),x,oo)
I get this error:
TypeError: 'module' object is not callable
Any ideas what I'm doing wrong?
source share