10.5 problem Exercise 35.5, page 504

Internal problem ID [4147]

Book: Ordinary Differential Equations, By Tenenbaum and Pollard. Dover, NY 1963
Section: Chapter 8. Special second order equations. Lesson 35. Independent variable x absent
Problem number: Exercise 35.5, page 504.
ODE order: 2.
ODE degree: 1.

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

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

Solution by Maple

Time used: 0.0 (sec). Leaf size: 17

dsolve(x*diff(y(x),x$2)-diff(y(x),x)=x^2,y(x), singsol=all)
 

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

Solution by Mathematica

Time used: 0.041 (sec). Leaf size: 23

DSolve[x*y''[x]-y'[x]==x^2,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to \frac {1}{6} x^2 (2 x+3 c_1)+c_2 \\ \end{align*}