7.14 problem 17

Internal problem ID [4344]

Book: Mathematical Methods in the Physical Sciences. third edition. Mary L. Boas. John Wiley. 2006
Section: Chapter 8, Ordinary differential equations. Section 7. Other second-Order equations. page 435
Problem number: 17.
ODE order: 2.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {x^{2} y^{\prime \prime }+x y^{\prime }-16 y-8 x^{4}=0} \end {gather*}

Solution by Maple

Time used: 0.006 (sec). Leaf size: 26

dsolve(x^2*diff(y(x),x$2)+x*diff(y(x),x)-16*y(x)=8*x^4,y(x), singsol=all)
 

\[ y \relax (x ) = x^{4} c_{2}+\frac {c_{1}}{x^{4}}+\frac {x^{4} \left (8 \ln \relax (x )-1\right )}{8} \]

Solution by Mathematica

Time used: 0.004 (sec). Leaf size: 28

DSolve[x^2*y''[x]+x*y'[x]-16*y[x]==8*x^4,y[x],x,IncludeSingularSolutions -> True]
 

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