I think/thought my question is rather simple, but I don't seem to be finding answers (yes I did pleny of Googleing). 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.

If I could even get some keywords to Google, that would be helpful as well.

Thanks in advance for any replies!

link|improve this question

Why can't you do it numerically? – vichle Nov 9 '10 at 15:13
What do you mean by that? – Nitroware Nov 11 '10 at 1:31
feedback

3 Answers

up vote 4 down vote accepted

See this answer: OpenSouce C/C++ Math expression parser Library

link|improve this answer
feedback

You might want to try Googling for computer-algebra systems / libraries, of which SAGE is one example. There are others, such as Maxima and Axiom. There is a list on Wikipedia. If none of these are suitable, you could always try calling Wolfram Alpha.

link|improve this answer
I really like SAGE, however the only problem is that I cant figure out how to install it, and I have to do bulk so Wolfram doesn't work for me. Very good answer though, Thanks! I can only hope for an API key from wolfram... – Nitroware Nov 11 '10 at 1:30
feedback

Because for derivatives we have...

  1. sum/difference rules
  2. constant multiple rules
  3. product rule
  4. quotient rule
  5. chain rule
  6. exponent rule (or trick, depending on how you're taught)

...it's possible to calculate the derivative of a formula from its parse tree, by recursive application of these combinative rules. This makes a very nice exercise for beginners. The exercise includes parsing, calculus, recursion, etc.

For integrals, we have many tricks analogous to (and derived from) those rules, but we lack:

  1. a product rule for integral(f(x)*g(x)) directly in terms of integral(f) and integral(g)
  2. a composition rule for integral(f(g(x))) directly in terms of integral(f) and integral(g)
  3. a quotient rule for integral(f(x)/g(x)) in terms of integral(f) and integral(g)

(integration by parts is not #1! substitution is not #2!)

For these reasons, integration is fundamentally harder than differentiation.

You can expect simple packages to do differentiation quite well. But effective, robust symbolic integration is difficult to come by. For good integration, turn to the experts: Maple, Mathematica, Sage, Alpha, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.