3.182 problem 1182

Internal problem ID [9517]

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

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

\[ \boxed {x^{2} y^{\prime \prime }-3 y^{\prime } x +4 y=5 x} \]

Solution by Maple

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

dsolve(x^2*diff(diff(y(x),x),x)-3*x*diff(y(x),x)+4*y(x)-5*x=0,y(x), singsol=all)
 

\[ y \left (x \right ) = c_{2} x^{2}+c_{1} x^{2} \ln \left (x \right )+5 x \]

Solution by Mathematica

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

DSolve[-5*x + 4*y[x] - 3*x*y'[x] + x^2*y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to x (c_1 x+2 c_2 x \log (x)+5) \]