82.43.1 problem Ex. 1

Internal problem ID [18961]
Book : Introductory Course On Differential Equations by Daniel A Murray. Longmans Green and Co. NY. 1924
Section : Chapter VIII. Exact differential equations, and equations of particular forms. Integration in series. problems at page 98
Problem number : Ex. 1
Date solved : Tuesday, January 28, 2025 at 12:40:52 PM
CAS classification : [[_3rd_order, _missing_y]]

\begin{align*} x^{2} y^{\prime \prime \prime }-4 x y^{\prime \prime }+6 y^{\prime }&=4 \end{align*}

Solution by Maple

Time used: 0.003 (sec). Leaf size: 21

dsolve(x^2*diff(y(x),x$3)-4*x*diff(y(x),x$2)+6*diff(y(x),x)=4,y(x), singsol=all)
 
\[ y \left (x \right ) = \frac {1}{4} c_{2} x^{4}+\frac {1}{3} c_{1} x^{3}+\frac {2}{3} x +c_3 \]

Solution by Mathematica

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

DSolve[x^2*D[y[x],{x,3}]-4*x*D[y[x],{x,2}]+6*D[y[x],x]==4,y[x],x,IncludeSingularSolutions -> True]
 
\[ y(x)\to \frac {c_2 x^4}{4}+\frac {c_1 x^3}{3}+\frac {2 x}{3}+c_3 \]