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

6 Ansichten (letzte 30 Tage)
'exact differential equation'dy/dx=(x^2-y^2)/2*x*y'
  2 Kommentare
Star Strider
Star Strider am 30 Sep. 2018
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 am 30 Sep. 2018
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

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

madhan ravi
madhan ravi am 1 Okt. 2018
syms y(x)
ode=2*x*y*(diff(y))==(x^2)-(y^2)
sol=dsolve(ode)
  5 Kommentare

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by