Is there a way to reverse the application of derivative rules in order to simplify expressions including derivatives?
e.g. in Mathematica code: Want to go from
(g[x, y]*Derivative[1, 0][f][x, y])/h[x, y] + (f[x, y]*Derivative[1, 0][g][x, y])/h[x, y] -
(f[x, y]*g[x, y]*Derivative[1, 0][h][x, y])/h[x, y]^2
to
D[f[x, y]*g[x, y]/h[x, y], x]
d? and thend->D? – acl Mar 25 '13 at 00:07f,g,hare defined or not, whetherxis the independent variable, etc. – Jens Mar 25 '13 at 00:16