Warning: Unable to find symbolic solution.
Show older comments
clc;
clear ;
syms y(x)
num= 4*atan(x)*sqrt(y*(1+x^2)) + 2*x*y;
D= 1+x^2;
u=num/D;
ode = diff(y) + u ;
ysol(x) = dsolve(ode)
2 Comments
khoi phan
on 5 Aug 2022
Bjorn Gustavsson
on 5 Aug 2022
Not all differential equations have symbolic solutions. This one looks "quite nonlinear" and you might find some clever trick to convert it to something simple, might here means something like "if this problem is designed to have a clever series of transformations you might find those". Try with numerical solutions, try to plot the ode-vectorfield for insights into what solutions look like.
Answers (0)
Categories
Find more on Common Operations 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!