sympy / sympy_gamma

A SymPy version of WolframAlpha.

Home Page:https://sympygamma.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Derivative does not match result of the steps

mikeasilva opened this issue · comments

First off this is an awesome project. However when I entered 14+((367*t^2)/(t^2+100)) (modified slightly due to markdown) into http://gamma.sympy.org the derivative given is not the same as the results of the steps. The one shown in the steps appears to be correct and the other one incorrect to me.

Here's the derivative:
derivative

Here's the steps:
steps

They are equivalent. If you put the first one under a common denominator, you get the second one. The issue is that the first one uses diff, whereas the steps implement a separate differentiation algorithm, so they don't always agree.