How can I do implicit differentiation

30 ビュー (過去 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 日
  1 件のコメント
zahra alramadhan
zahra alramadhan 2020 年 7 月 4 日
sorry that's not clear

サインインしてコメントする。


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 Center および File ExchangeNumber Theory についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by