3.428 problem 1434

Internal problem ID [9761]
Internal file name [OUTPUT/8703_Monday_June_06_2022_05_15_32_AM_9163696/index.tex]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 2, linear second order
Problem number: 1434.
ODE order: 2.
ODE degree: 1.

The type(s) of ODE detected by this program : "unknown"

Maple gives the following as the ode type

[[_2nd_order, _with_linear_symmetries]]

Unable to solve or complete the solution.

\[ \boxed {y^{\prime \prime }+\frac {b \cos \left (x \right ) y^{\prime }}{\sin \left (x \right ) a}+\frac {\left (c \cos \left (x \right )^{2}+d \cos \left (x \right )+e \right ) y}{a \sin \left (x \right )^{2}}=0} \]

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 
-> Heun: Equivalence to the GHE or one of its 4 confluent cases under a power @ Moebius 
-> trying a solution of the form r0(x) * Y + r1(x) * Y where Y = exp(int(r(x), dx)) * 2F1([a1, a2], [b1], f) 
-> Trying changes of variables to rationalize or make the ODE simpler 
   trying a symmetry of the form [xi=0, eta=F(x)] 
   checking if the LODE is missing y 
   -> Trying an equivalence, under non-integer power transformations, 
      to LODEs admitting Liouvillian solutions. 
      -> Trying a Liouvillian solution using Kovacics algorithm 
      <- No Liouvillian solutions exists 
   -> Trying a solution in terms of special functions: 
      -> Bessel 
      -> elliptic 
      -> Legendre 
      -> Kummer 
         -> hyper3: Equivalence to 1F1 under a power @ Moebius 
         <- hyper3 successful: received ODE is equivalent to the 2F1 ODE 
      <- Kummer successful 
   <- special function solution successful 
   Change of variables used: 
      [x = arcsin(t)] 
   Linear ODE actually solved: 
      (-2*c*t^2+2*c+2*d*(-t^2+1)^(1/2)+2*e)*u(t)+(-2*a*t^3-2*b*t^3+2*b*t)*diff(u(t),t)+(-2*a*t^4+2*a*t^2)*diff(diff(u(t),t),t) = 0 
<- change of variables successful`
 

Solution by Maple

Time used: 0.875 (sec). Leaf size: 515

dsolve(diff(diff(y(x),x),x) = -b/sin(x)*cos(x)/a*diff(y(x),x)-(c*cos(x)^2+d*cos(x)+e)/a/sin(x)^2*y(x),y(x), singsol=all)
 

\[ y \left (x \right ) = \frac {\sqrt {2}\, \sin \left (x \right )^{-\frac {a +b}{2 a}} \sqrt {\cos \left (x \right )-1}\, \left (\frac {\cos \left (x \right )}{2}-\frac {1}{2}\right )^{\frac {\sqrt {a^{2}+\left (-2 b -4 c -4 d -4 e \right ) a +b^{2}}}{4 a}} \left (c_{1} \cos \left (\frac {x}{2}\right )^{-\frac {-2 a +\sqrt {a^{2}+\left (-2 b -4 c +4 d -4 e \right ) a +b^{2}}}{2 a}} \operatorname {hypergeom}\left (\left [\frac {\sqrt {a^{2}+\left (-2 b -4 c -4 d -4 e \right ) a +b^{2}}-2 i \sqrt {4 a c -b^{2}}-\sqrt {a^{2}+\left (-2 b -4 c +4 d -4 e \right ) a +b^{2}}+2 a}{4 a}, \frac {\sqrt {a^{2}+\left (-2 b -4 c -4 d -4 e \right ) a +b^{2}}+2 i \sqrt {4 a c -b^{2}}-\sqrt {a^{2}+\left (-2 b -4 c +4 d -4 e \right ) a +b^{2}}+2 a}{4 a}\right ], \left [1-\frac {\sqrt {a^{2}+\left (-2 b -4 c +4 d -4 e \right ) a +b^{2}}}{2 a}\right ], \frac {\cos \left (x \right )}{2}+\frac {1}{2}\right )+c_{2} \cos \left (\frac {x}{2}\right )^{\frac {2 a +\sqrt {a^{2}+\left (-2 b -4 c +4 d -4 e \right ) a +b^{2}}}{2 a}} \operatorname {hypergeom}\left (\left [\frac {\sqrt {a^{2}+\left (-2 b -4 c -4 d -4 e \right ) a +b^{2}}-2 i \sqrt {4 a c -b^{2}}+\sqrt {a^{2}+\left (-2 b -4 c +4 d -4 e \right ) a +b^{2}}+2 a}{4 a}, \frac {\sqrt {a^{2}+\left (-2 b -4 c -4 d -4 e \right ) a +b^{2}}+2 i \sqrt {4 a c -b^{2}}+\sqrt {a^{2}+\left (-2 b -4 c +4 d -4 e \right ) a +b^{2}}+2 a}{4 a}\right ], \left [1+\frac {\sqrt {a^{2}+\left (-2 b -4 c +4 d -4 e \right ) a +b^{2}}}{2 a}\right ], \frac {\cos \left (x \right )}{2}+\frac {1}{2}\right )\right )}{2} \]

Solution by Mathematica

Time used: 0.0 (sec). Leaf size: 0

DSolve[y''[x] == -(((e + d*Cos[x] + c*Cos[x]^2)*Csc[x]^2*y[x])/a) - (b*Cot[x]*y'[x])/a,y[x],x,IncludeSingularSolutions -> True]
 

Timed out