7.84 problem 1675 (book 6.84)

Internal problem ID [9249]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 6, non-linear second order
Problem number: 1675 (book 6.84).
ODE order: 2.
ODE degree: 1.

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

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

Solution by Maple

Time used: 0.063 (sec). Leaf size: 27

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

\[ y \left (x \right ) = c_{1} x^{a} \sin \left (x^{b} c \right )+c_{2} x^{a} \cos \left (x^{b} c \right ) \]

Solution by Mathematica

Time used: 0.031 (sec). Leaf size: 63

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

\begin{align*} y(x)\to 2^{-\frac {a+b}{b}} c^{a/b} \left (x^{2 b}\right )^{\frac {a}{2 b}} \left (c_2 \sin \left (c \sqrt {x^{2 b}}\right )+2 c_1 \cos \left (c x^b\right )\right ) \\ \end{align*}