Solve the initial value problem (xlogx)y'=2y, y(2)=(log2)^2

Réponses (1)

Torsten
Torsten le 25 Oct 2017
Modifié(e) : Torsten le 25 Oct 2017
syms y(x)
eqn = x*log(x)*diff(y,x)==2*y;
cond = y(2)==log(2)^2;
ysol(x) = dsolve(eqn,cond)
Best wishes
Torsten.

Catégories

En savoir plus sur Mathematics dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by