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).
Asked: 2021-07-13 07:34:53 +0100
Seen: 248 times
Last updated: Jul 13 '21
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
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?