Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 4 years ago

lolora gravatar image

How do I differentiate an implicit function in sagemath?

I'm trying to differentiate an implicit expression

xey=xy

This is my sagemath code

x = var('x')
f(x,y)= x*e**y - x + y
show(diff(f))

Sagemath Answer is (x,y)  (ey1,xey+1)

But the actual answer is 1eyxey+1

How do I get the actual answer using sagemath?