4.36 problem 39

Internal problem ID [6103]

Book: Elementary differential equations. By Earl D. Rainville, Phillip E. Bedient. Macmilliam Publishing Co. NY. 6th edition. 1981.
Section: CHAPTER 16. Nonlinear equations. Section 101. Independent variable missing. EXERCISES Page 324
Problem number: 39.
ODE order: 2.
ODE degree: 2.

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

Solve \begin {gather*} \boxed {\left (y^{\prime \prime }\right )^{2}-2 y^{\prime \prime }+\left (y^{\prime }\right )^{2}-2 x y^{\prime }+x^{2}=0} \end {gather*} With initial conditions \begin {align*} \left [y \relax (0) = {\frac {1}{2}}, y^{\prime }\relax (0) = 1\right ] \end {align*}

Solution by Maple

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

dsolve([diff(y(x),x$2)^2-2*diff(y(x),x$2)+diff(y(x),x)^2-2*x*diff(y(x),x)+x^2=0,y(0) = 1/2, D(y)(0) = 1],y(x), singsol=all)
 

\begin{align*} y \relax (x ) = \frac {\left (x +1\right )^{2}}{2} \\ y \relax (x ) = \frac {x^{2}}{2}+\sin \relax (x )+\frac {1}{2} \\ \end{align*}

Solution by Mathematica

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

DSolve[{(y''[x])^2-2*y''[x]+(y'[x])^2-2*x*y'[x]+x^2==0,{y[0]==1/2,y'[0]==1}},y[x],x,IncludeSingularSolutions -> True]
 

Not solved