Internal
problem
ID
[21884]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
II.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
36.
Nonlinear
differential
equations.
Page
1203
Problem
number
:
36-14
Date
solved
:
Thursday, October 02, 2025 at 08:03:29 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=y(x) = 2*x+diff(y(x),x)-1/3*diff(y(x),x)^3; dsolve(ode,y(x), singsol=all);
ode=y[x]==2*x+D[y[x],x]-1/2*D[y[x],x]^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x + y(x) + Derivative(y(x), x)**3/2 - Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out