How can I do implicit differentiation

조회 수: 27 (최근 30일)
zahra alramadhan
zahra alramadhan 2020년 7월 4일
답변: Walter Roberson 2020년 7월 4일
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

답변 (3개)

madhan ravi
madhan ravi 2020년 7월 4일
편집: madhan ravi 2020년 7월 4일

Star Strider
Star Strider 2020년 7월 4일
편집: Star Strider 2020년 7월 4일
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 2020년 7월 4일
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)

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by