3.334 problem 1340

Internal problem ID [9668]

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

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

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

Solution by Maple

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

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

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

Solution by Mathematica

Time used: 0.047 (sec). Leaf size: 23

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

\[ y(x)\to \frac {x^2 (c_2 x+c_1)}{a x+b} \]