2.38   ODE No. 38

  1. Problem in Latex
  2. Mathematica input
  3. Maple input

ay(x)3bx3/2+y(x)=0 Mathematica : cpu = 0.160829 (sec), leaf count = 99

Solve[2RootSum[2#13+#11ab232&,log(y(x)ax3/2b3#1)1ab236#12&]=axlog(x)(ax3/2b)2/3+c1,y(x)]

Maple : cpu = 0.068 (sec), leaf count = 34

{y(x)=RootOf(ln(x)+_C1+2_Z(2a_a3+_a+2b)1d_a)1x}

Hand solution

(1)y(x)=ay3+bx32

This can be transformed to Abel first order non-linear ode as follows. Let y(x)=x12η(ξ) where ξ=lnx hence

dydx=12x32η(ξ)+x12dηdξdξdx=12x32η(ξ)+x12dηdξ1x=12x32η(ξ)+x32dηdξ

Substituting in (1) gives

12x32η(ξ)+x32dηdξ=a(x12η(ξ))3+bx3212x32η(ξ)+x32dηdξ=ax32η3(ξ)+bx3212η+η=aη3+bη=b+12η+aη3

This is Abel first kind. In general form it is

η=f0+f1η+f2η2+f3η3

Where in this case f0=b,f1=12,f2=0,f3=a. Using Maple, the solution to the above is (I need to learn how to solve Able by hand more) is implicit, given as

η=ξη(ξ)1b+12z+az3dz+C

Where C is constant of integration. Hence, since y(x)=x12η(ξ), then η(ξ)=xy and the above becomes

xy=lnxxy1b+12z+az3dz+Cy(x)=(lnxxy1b+12z+az3dz+C)1x

DId not verify. Need to look more into this later.