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

9 visualizzazioni (ultimi 30 giorni)
'exact differential equation'dy/dx=(x^2-y^2)/2*x*y'
  2 Commenti
Star Strider
Star Strider il 30 Set 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 il 30 Set 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

Accedi per commentare.

Risposta accettata

madhan ravi
madhan ravi il 1 Ott 2018
syms y(x)
ode=2*x*y*(diff(y))==(x^2)-(y^2)
sol=dsolve(ode)
  5 Commenti

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by