✓ Maple : cpu = 0.085 (sec), leaf count = 59
This is Riccati first order non-linear. Let
This is linear second order, an Emden Fowler ODE, with removal singularity. Solved using power
series method. The solution is
Which is simplified to
restart; ode:=x*diff(y(x),x)+x*y(x)^2+a=0; num:=_C1*sqrt(a)*BesselJ(0,2*sqrt(a)*sqrt(x))+sqrt(a)*BesselY(0,2*sqrt(a)*sqrt(x)); den:=_C1*sqrt(x)*BesselJ(1,2*sqrt(a)*sqrt(x))+sqrt(x)*BesselY(1,2*sqrt(a)*sqrt(x)); my_solution:=num/den; odetest(y(x)=my_solution,ode); 0