Differentiation or Indefinite Integration in PHP, Javascript, or C#?

Nick Artman

New member
Hello All, I think my question is rather simple, but I don't seem to be finding answers. What I want t do is to be able to differentiate or integrate dynamically given an equation. For example:

diff((x^2)/(15*x^4-32*x^5),x)

Would Return:

20*(8*x^4 - 3*x^3)*x^2/(32*x^5 - 15*x^4)^2 - 2*x/(32*x^5 - 15*x^4)

I know PHP, JavaScript and C#, so any work, but I really need some kind of software that can do this. I tried SAGE, but it is more of a server then a software, plus it is in python.

Thanks in advance!
 
Back
Top