56.1.45 problem 45

Internal problem ID [8757]
Book : Own collection of miscellaneous problems
Section : section 1.0
Problem number : 45
Date solved : Wednesday, March 05, 2025 at 06:45:55 AM
CAS classification : [_dAlembert]

\begin{align*} y^{\prime } y&=1-x {y^{\prime }}^{3} \end{align*}

Maple. Time used: 0.035 (sec). Leaf size: 1798
ode:=y(x)*diff(y(x),x) = 1-x*diff(y(x),x)^3; 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} \text {Solution too large to show}\end{align*}

Mathematica. Time used: 86.107 (sec). Leaf size: 20717
ode=D[y[x],x]*y[x]==1-x*(D[y[x],x])^3; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Too large to display

Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x*Derivative(y(x), x)**3 + y(x)*Derivative(y(x), x) - 1,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out