First time here? Check out the FAQ!
answered 2020-06-28 03:01:51 +0100
The code
x = var('x') y = function("y")(x) eq = x*e**y == x - y dy = diff(y,x) sol = solve(diff(eq), dy) show(dy.subs(sol))
yields $$-\frac{e^{y\left(x\right)} - 1}{x e^{y\left(x\right)} + 1}$$ as expected