Don't need the online integrator any more when I can do this: #maths #computing #python from sympy import * b,C,D = symbols('b C D') print(integrate(C/(1+(b*D)**2)*2*pi*b, b)) Output: pi*C*log(D**2*b**2 + 1)/D**2