I don't understand why sympy can't calculate very simple integral from 0 to t. How to solve this problem?
import sympy
from sympy import sin , cos , sqrt, asinh , log
t= sympy.symbols('t')
x = 't^2'
y = 't^3'
x_derivatives = sympy.diff(x , t)
y_derivatives = sympy.diff(y , t)
expression = x_derivatives**2 + y_derivatives**2
print(expression)
fi_t = sympy.integrate(sympy.sqrt(expression), (t,0,t))
print(fi_t)
Result:
9*t**4 + 4*t**2
Integral(sqrt(9*t**4 + 4*t**2), (t, 0, t))
sympy.integrate(sympy.sqrt(expression), (t,0,t)),tis a variable and an upper bound, which is impossible. - Kate Melnykovatin(t,0,t)must be a constant, no? - DYZ(t, -4, 4). - DYZ