2.2.28 Problem 28

Solved as second order ode using Kovacic algorithm
Maple
Mathematica
Sympy

Internal problem ID [9151]
Book : Second order enumerated odes
Section : section 2
Problem number : 28
Date solved : Sunday, March 30, 2025 at 02:24:03 PM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

Solved as second order ode using Kovacic algorithm

Time used: 0.213 (sec)

Solve

yyx+y(8+x+x)4x2=0

Writing the ode as

(1)yyx+(2x2+14x3/2+14x)y=0(2)Ay+By+Cy=0

Comparing (1) and (2) shows that

A=1(3)B=1xC=2x2+14x3/2+14x

Applying the Liouville transformation on the dependent variable gives

z(x)=yeB2Adx

Then (2) becomes

(4)z(x)=rz(x)

Where r is given by

(5)r=st=2AB2BA+B24AC4A2

Substituting the values of A,B,C from (3) in the above and simplifying gives

(6)r=2x2

Comparing the above to (5) shows that

s=2t=x2

Therefore eq. (4) becomes

(7)z(x)=(2x2)z(x)

Equation (7) is now solved. After finding z(x) then y is found using the inverse transformation

y=z(x)eB2Adx

The first step is to determine the case of Kovacic algorithm this ode belongs to. There are 3 cases depending on the order of poles of r and the order of r at . The following table summarizes these cases.

Case

Allowed pole order for r

Allowed value for O()

1

{0,1,2,4,6,8,}

{,6,4,2,0,2,3,4,5,6,}

2

Need to have at least one pole that is either order 2 or odd order greater than 2. Any other pole order is allowed as long as the above condition is satisfied. Hence the following set of pole orders are all allowed. {1,2},{1,3},{2},{3},{3,4},{1,2,5}.

no condition

3

{1,2}

{2,3,4,5,6,7,}

Table 2.39: Necessary conditions for each Kovacic case

The order of r at is the degree of t minus the degree of s. Therefore

O()=deg(t)deg(s)=20=2

The poles of r in eq. (7) and the order of each pole are determined by solving for the roots of t=x2. There is a pole at x=0 of order 2. Since there is no odd order pole larger than 2 and the order at is 2 then the necessary conditions for case one are met. Since there is a pole of order 2 then necessary conditions for case two are met. Since pole order is not larger than 2 and the order at is 2 then the necessary conditions for case three are met. Therefore

L=[1,2,4,6,12]

Attempting to find a solution using case n=1.

Looking at poles of order 2. The partial fractions decomposition of r is

r=2x2

For the pole at x=0 let b be the coefficient of 1x2 in the partial fractions decomposition of r given above. Therefore b=2. Hence

[r]c=0αc+=12+1+4b=2αc=121+4b=1

Since the order of r at is 2 then [r]=0. Let b be the coefficient of 1x2 in the Laurent series expansion of r at . which can be found by dividing the leading coefficient of s by the leading coefficient of t from

r=st=2x2

Since the gcd(s,t)=1. This gives b=2. Hence

[r]=0α+=12+1+4b=2α=121+4b=1

The following table summarizes the findings so far for poles and for the order of r at where r is

r=2x2

pole c location pole order [r]c αc+ αc
0 2 0 2 1

Order of r at [r] α+ α
2 0 2 1

Now that the all [r]c and its associated αc± have been determined for all the poles in the set Γ and [r] and its associated α± have also been found, the next step is to determine possible non negative integer d from these using

d=αs()cΓαcs(c)

Where s(c) is either + or and s() is the sign of α±. This is done by trial over all set of families s=(s(c))cΓ until such d is found to work in finding candidate ω. Trying α=1 then

d=α(αc1)=1(1)=0

Since d an integer and d0 then it can be used to find ω using

ω=cΓ(s(c)[r]c+αcs(c)xc)+s()[r]

The above gives

ω=(()[r]c1+αc1xc1)+()[r]=1x+()(0)=1x=1x

Now that ω is determined, the next step is find a corresponding minimal polynomial p(x) of degree d=0 to solve the ode. The polynomial p(x) needs to satisfy the equation

(1A)p+2ωp+(ω+ω2r)p=0

Let

(2A)p(x)=1

Substituting the above in eq. (1A) gives

(0)+2(1x)(0)+((1x2)+(1x)2(2x2))=00=0

The equation is satisfied since both sides are zero. Therefore the first solution to the ode z=rz is

z1(x)=peωdx=e1xdx=1x

The first solution to the original ode in y is found from

y1=z1e12BAdx=z1e121x1dx=z1ex=z1(ex)

Which simplifies to

y1=exx

The second solution y2 to the original ode is found using reduction of order

y2=y1eBAdxy12dx

Substituting gives

y2=y1e1x1dx(y1)2dx=y1e2x(y1)2dx=y1(x3e2xe2x3)

Therefore the solution is

y=c1y1+c2y2=c1(exx)+c2(exx(x3e2xe2x3))

Will add steps showing solving for IC soon.

Summary of solutions found

y=c1exx+c2x2ex3
Maple. Time used: 0.005 (sec). Leaf size: 19
ode:=diff(diff(y(x),x),x)-1/x^(1/2)*diff(y(x),x)+1/4/x^2*(x+x^(1/2)-8)*y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
y=ex(c2x3+c1)x

Maple trace

Methods for second order ODEs: 
--- Trying classification methods --- 
trying a symmetry of the form [xi=0, eta=F(x)] 
checking if the LODE is missing y 
-> Trying a Liouvillian solution using Kovacics algorithm 
   A Liouvillian solution exists 
   Reducible group (found an exponential solution) 
<- Kovacics algorithm successful
 

Mathematica. Time used: 0.039 (sec). Leaf size: 30
ode=D[y[x],{x,2}]-1/x^(1/2)*D[y[x],x]+y[x]/(4*x^2)*(-8+x^(1/2)+x)==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
y(x)ex(c2x3+3c1)3x
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(Derivative(y(x), (x, 2)) + (sqrt(x) + x - 8)*y(x)/(4*x**2) - Derivative(y(x), x)/sqrt(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : The given ODE -sqrt(x)*Derivative(y(x), (x, 2)) + Derivative(y(x), x) - y(x)/(4*x) - y(x)/(4*sqrt(x)) + 2*y(x)/x**(3/2) cannot be solved by the factorable group method