I tried to calculate the indefinite integral of 1/(L-x)dx
in sympy:
from sympy import *
x, L = symbols('x L')
f = 1/(L-x)
integrate(f, x)
it returned:
-log(-L + x)
while it should be:
-log(L-x)
Is it related to sympy or I missed something, thanks for any explanation.
I have not found an answer for this paricular function.