Question : Integrate python sympy of sin(x), e^x and log(x) ?Answer :Integrate python sympy of sin(x)# Integrate python sympy of sin(x) without and with limits import sympy as sp x=sp.Symbol('x') f=sp.Function('f') f=sp.sin(x) print('integral of sin(x) :',sp.integrate(f,x)) print('integral of sin(x) with…
Posted inPython