Implicit derivative at a particular point
For the function f(x,y) = x^3 + y^3 - 6xy, what will be input command in sage math for calculation of dy/dx at (1,2).
For the function f(x,y) = x^3 + y^3 - 6xy, what will be input command in sage math for calculation of dy/dx at (1,2).
Asked: 3 years ago
Seen: 199 times
Last updated: Jul 13 '21
We can find implicit derivative as follows x = var('x') y = var('y')
f(x,y) = x^3 + y^3 - 6xy
y=function('y')(x) temp=diff(f(x,y)) solve(temp,diff(y))
But my question is how we can find the value of implicit derivative at point (1,2)
Have you tried substituting the desired values for x,y into your general expression for the derivative?