Internal
problem
ID
[5593]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
34
Problem
number
:
1024
Date
solved
:
Tuesday, March 04, 2025 at 10:31:53 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x)^3+diff(y(x),x) = exp(y(x)); dsolve(ode,y(x), singsol=all);
ode=(D[y[x],x])^3 +D[y[x],x]==Exp[ y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-exp(y(x)) + Derivative(y(x), x)**3 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out