3.362 problem 1368

Internal problem ID [9696]

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

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

\[ \boxed {y^{\prime \prime }+\frac {a x y^{\prime }}{x^{2}+1}+\frac {b y}{\left (x^{2}+1\right )^{2}}=0} \]

Solution by Maple

Time used: 0.094 (sec). Leaf size: 71

dsolve(diff(diff(y(x),x),x) = -a*x/(x^2+1)*diff(y(x),x)-b/(x^2+1)^2*y(x),y(x), singsol=all)
 

\[ y \left (x \right ) = \left (x^{2}+1\right )^{\frac {1}{2}-\frac {a}{4}} \left (\operatorname {LegendreP}\left (\frac {a}{2}-1, \frac {\sqrt {a^{2}-4 a +4 b +4}}{2}, i x \right ) c_{1} +\operatorname {LegendreQ}\left (\frac {a}{2}-1, \frac {\sqrt {a^{2}-4 a +4 b +4}}{2}, i x \right ) c_{2} \right ) \]

Solution by Mathematica

Time used: 0.053 (sec). Leaf size: 92

DSolve[y''[x] == -((b*y[x])/(1 + x^2)^2) - (a*x*y'[x])/(1 + x^2),y[x],x,IncludeSingularSolutions -> True]
                                                                                    
                                                                                    
 

\[ y(x)\to \left (x^2+1\right )^{\frac {1}{2}-\frac {a}{4}} \left (c_1 P_{\frac {a-2}{2}}^{\frac {1}{2} \sqrt {a^2-4 a+4 b+4}}(i x)+c_2 Q_{\frac {a-2}{2}}^{\frac {1}{2} \sqrt {a^2-4 a+4 b+4}}(i x)\right ) \]