Solve the initial value problem (xlogx)y'=2y, y(2)=(log2)^2
Show older comments
How do i solve this in MATLAB
Answers (1)
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.
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!