3.224 problem 1228

Internal problem ID [9558]

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

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

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

Solution by Maple

Time used: 0.078 (sec). Leaf size: 53

dsolve((x^2+1)*diff(diff(y(x),x),x)+3*x*diff(y(x),x)+a*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = \frac {c_{1} \left (x +\sqrt {x^{2}+1}\right )^{\sqrt {-a +1}}+c_{2} \left (x +\sqrt {x^{2}+1}\right )^{-\sqrt {-a +1}}}{\sqrt {x^{2}+1}} \]

Solution by Mathematica

Time used: 0.051 (sec). Leaf size: 66

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

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