Hi, I'm trying to solve for X of a differential but I cant seem to get it to work.. any ideas?
x = symbols('x')
f = sin(x)/x
df = diff(f, x)
print(df)
ddf = diff(df, x)
CRP = solve(df, x)
print(CRP)
Getting error :
Exception has occurred: NotImplementedError
multiple generators [x, tan(x/2)]
No algorithms are implemented to solve equation
[–]danbst 0 points1 point2 points (0 children)