4.73 problem 1521

Internal problem ID [9100]

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

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

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

Solution by Maple

Time used: 0.015 (sec). Leaf size: 31

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

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

Solution by Mathematica

Time used: 0.039 (sec). Leaf size: 29

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

\begin{align*} y(x)\to x^2 \left (c_3 \left (x+\frac {1}{x}+\log ^2(x)\right )+c_2 \log (x)+c_1\right ) \\ \end{align*}