How can I do implicit differentiation

28 visualizaciones (últimos 30 días)
zahra alramadhan
zahra alramadhan el 4 de Jul. de 2020
Respondida: Walter Roberson el 4 de Jul. de 2020
Hello,
I have this quastion and I need to do it by matlab. If anyone could help me please with it.
Find dy/dx by implicit differentiation.
tan^-1 (x^2y)=x+xy^2

Respuestas (3)

madhan ravi
madhan ravi el 4 de Jul. de 2020
Editada: madhan ravi el 4 de Jul. de 2020

Star Strider
Star Strider el 4 de Jul. de 2020
Editada: Star Strider el 4 de Jul. de 2020
I can find no documentation that it is possible in MATLAB (as much as I like it).
See this Wolfram Alpha page for the correct solution.

Walter Roberson
Walter Roberson el 4 de Jul. de 2020
Example
syms y(x) DY
eqn = acot(x^2+x*y) - asin(x+y) == y^3-x;
dy = diff(y);
deqn = diff(eqn,x);
Deqn = subs(deqn, dy, DY);
DYsol = simplify( solve(Deqn, DY) );
disp(DY == DYsol)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by