How can we get the solution for an 'exact differential equation' dy/dx=(x^2-y^2)/2*x*y in matlab

21 ビュー (過去 30 日間)
'exact differential equation'dy/dx=(x^2-y^2)/2*x*y'
  2 件のコメント
Star Strider
Star Strider 2018 年 9 月 30 日
You seem to have omitted the LHS.
dxdt = (x^2-y^2)/2*x*y
dydt = (x^2-y^2)/2*x*y
dxdy = (x^2-y^2)/2*x*y
dydx = (x^2-y^2)/2*x*y
or something else?
abcdr
abcdr 2018 年 9 月 30 日
My bad. The equation is 2*x*y*(dy/dx)=(x^2)-(y^2). This is an exact equation. How do we find the solution of an exact differential equation in matlab

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

採用された回答

madhan ravi
madhan ravi 2018 年 10 月 1 日
syms y(x)
ode=2*x*y*(diff(y))==(x^2)-(y^2)
sol=dsolve(ode)
  5 件のコメント
Stephan
Stephan 2018 年 10 月 11 日
Acceptd answer since questioner didnt.
madhan ravi
madhan ravi 2018 年 10 月 11 日
thank you @Stephen, Danke schön

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by