Internal
problem
ID
[13786]
Book
:
Differential
equations
and
the
calculus
of
variations
by
L.
ElSGOLTS.
MIR
PUBLISHERS,
MOSCOW,
Third
printing
1977.
Section
:
Chapter
1,
First-Order
Differential
Equations.
Problems
page
88
Problem
number
:
Problem
18
Date
solved
:
Wednesday, March 05, 2025 at 10:16:28 PM
CAS
classification
:
[_quadrature]
ode:=y(x) = diff(y(x),x)^4-diff(y(x),x)^3-2; dsolve(ode,y(x), singsol=all);
ode=y[x]==D[y[x],x]^4-D[y[x],x]^3-2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Timed out
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x) - Derivative(y(x), x)**4 + Derivative(y(x), x)**3 + 2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : < not supported between instances of NoneType and y