4.78 problem 1526

Internal problem ID [9105]

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

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

Solve \begin {gather*} \boxed {x^{2} \left (x^{4}+2 x^{2}+2 x +1\right ) y^{\prime \prime \prime }-\left (2 x^{6}+3 x^{4}-6 x^{2}-6 x -1\right ) y^{\prime \prime }+\left (x^{6}-6 x^{3}-15 x^{2}-12 x -2\right ) y^{\prime }+\left (x^{4}+4 x^{3}+8 x^{2}+6 x +1\right ) y=0} \end {gather*}

Solution by Maple

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

dsolve(x^2*(x^4+2*x^2+2*x+1)*diff(diff(diff(y(x),x),x),x)-(2*x^6+3*x^4-6*x^2-6*x-1)*diff(diff(y(x),x),x)+(x^6-6*x^3-15*x^2-12*x-2)*diff(y(x),x)+(x^4+4*x^3+8*x^2+6*x+1)*y(x)=0,y(x), singsol=all)
 

\[ y \relax (x ) = c_{1} {\mathrm e}^{x}+c_{2} {\mathrm e}^{\frac {1}{x}}+c_{3} x \,{\mathrm e}^{x} \]

Solution by Mathematica

Time used: 130.264 (sec). Leaf size: 25

DSolve[(1 + 6*x + 8*x^2 + 4*x^3 + x^4)*y[x] + (-2 - 12*x - 15*x^2 - 6*x^3 + x^6)*y'[x] - (-1 - 6*x - 6*x^2 + 3*x^4 + 2*x^6)*y''[x] + x^2*(1 + 2*x + 2*x^2 + x^4)*Derivative[3][y][x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to e^x (c_2 x+c_1)+c_3 e^{\frac {1}{x}} \\ \end{align*}