How can I do implicit differentiation
Show older comments
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
Answers (3)
madhan ravi
on 4 Jul 2020
Edited: madhan ravi
on 4 Jul 2020
1 Comment
zahra alramadhan
on 4 Jul 2020
Star Strider
on 4 Jul 2020
Edited: Star Strider
on 4 Jul 2020
0 votes
I can find no documentation that it is possible in MATLAB (as much as I like it).

Walter Roberson
on 4 Jul 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)
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!