Question: possible new bug in dsolve? Error, (in dsolve) invalid input: convert expects 2 or more arguments, but received 1

 

restart;

ode:=diff(y(x),x) = 3*(y(x)*x)^(1/2); 
IC:=y(0)=2;
sol:=dsolve([ode,IC])

Please Wait...