Processing math: 100%
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 5 years ago

Juanjo gravatar image

You don't consider the right equation to solve:

y=function('y')(x)
dy = diff(y)
derivative = solve(diff(y==exp(x*y)), dy)
derivative[0].subs(exp(x*y)==y)

This yields

diff(y(x), x) == -y(x)^2/(x*y(x) - 1)

that is, y=y21xy, in agreement with your hand calculation.