3.68 problem 1068

Internal problem ID [9403]

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

CAS Maple gives this as type [[_2nd_order, _with_linear_symmetries]]

\[ \boxed {y^{\prime \prime }+\cot \left (x \right ) y^{\prime }+v \left (v +1\right ) y=0} \]

Solution by Maple

Time used: 0.375 (sec). Leaf size: 45

dsolve(diff(diff(y(x),x),x)+diff(y(x),x)*cot(x)+v*(v+1)*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = c_{1} \operatorname {hypergeom}\left (\left [-\frac {v}{2}, \frac {1}{2}+\frac {v}{2}\right ], \left [\frac {1}{2}\right ], \cos \left (x \right )^{2}\right )+c_{2} \cos \left (x \right ) \operatorname {hypergeom}\left (\left [1+\frac {v}{2}, \frac {1}{2}-\frac {v}{2}\right ], \left [\frac {3}{2}\right ], \cos \left (x \right )^{2}\right ) \]

Solution by Mathematica

Time used: 0.178 (sec). Leaf size: 20

DSolve[v*(1 + v)*y[x] + Cot[x]*y'[x] + y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to c_1 \operatorname {LegendreP}(v,\cos (x))+c_2 \operatorname {LegendreQ}(v,\cos (x)) \]