4.29 problem 1477

Internal problem ID [9804]

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

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

\[ \boxed {x y^{\prime \prime \prime }+3 y^{\prime \prime }+x y=0} \]

Solution by Maple

Time used: 0.016 (sec). Leaf size: 40

dsolve(x*diff(diff(diff(y(x),x),x),x)+3*diff(diff(y(x),x),x)+x*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = \frac {\left ({\mathrm e}^{\frac {3 x}{2}} \cos \left (\frac {\sqrt {3}\, x}{2}\right ) c_{3} +{\mathrm e}^{\frac {3 x}{2}} \sin \left (\frac {\sqrt {3}\, x}{2}\right ) c_{2} +c_{1} \right ) {\mathrm e}^{-x}}{x} \]

Solution by Mathematica

Time used: 0.092 (sec). Leaf size: 43

DSolve[x*y[x] + 3*y''[x] + x*Derivative[3][y][x] == 0,y[x],x,IncludeSingularSolutions -> True]
                                                                                    
                                                                                    
 

\[ y(x)\to \frac {c_1 e^{-x}+c_2 e^{\sqrt [3]{-1} x}+c_3 e^{-(-1)^{2/3} x}}{x} \]