63.1.124 problem 183

Internal problem ID [15564]
Book : DIFFERENTIAL and INTEGRAL CALCULUS. VOL I. by N. PISKUNOV. MIR PUBLISHERS, Moscow 1969.
Section : Chapter 8. Differential equations. Exercises page 595
Problem number : 183
Date solved : Thursday, October 02, 2025 at 10:20:00 AM
CAS classification : [[_homogeneous, `class C`], _rational, _dAlembert]

\begin{align*} y&={y^{\prime }}^{2} x +{y^{\prime }}^{2} \end{align*}
Maple. Time used: 0.038 (sec). Leaf size: 53
ode:=y(x) = x*diff(y(x),x)^2+diff(y(x),x)^2; 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} y &= 0 \\ y &= \frac {\left (x +1+\sqrt {\left (x +1\right ) \left (1+c_1 \right )}\right )^{2}}{x +1} \\ y &= \frac {\left (-x -1+\sqrt {\left (x +1\right ) \left (1+c_1 \right )}\right )^{2}}{x +1} \\ \end{align*}
Mathematica. Time used: 0.037 (sec). Leaf size: 57
ode=y[x]==x*(D[y[x],x])^2+(D[y[x],x])^2; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to x-c_1 \sqrt {x+1}+1+\frac {c_1{}^2}{4}\\ y(x)&\to x+c_1 \sqrt {x+1}+1+\frac {c_1{}^2}{4}\\ y(x)&\to 0 \end{align*}
Sympy. Time used: 0.577 (sec). Leaf size: 19
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(-x*Derivative(y(x), x)**2 + y(x) - Derivative(y(x), x)**2,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = \frac {C_{1}^{2}}{4} - C_{1} \sqrt {x + 1} + x + 1 \]