Internal
problem
ID
[10574]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
574
Date
solved
:
Sunday, March 30, 2025 at 06:08:06 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(y)]`]]
ode:=f(x-3/2*diff(y(x),x)^2)+diff(y(x),x)^3-y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=f[x - (3*D[y[x],x]^2)/2] - y[x] + D[y[x],x]^3==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") f = Function("f") ode = Eq(f(x - 3*Derivative(y(x), x)**2/2) - y(x) + Derivative(y(x), x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : multiple generators [_X0, f(-3*_X0**2/2 + x)] No algorithms are implemented to solve equation _X0**3 + f(-3*_X0**2/2 + x) - y(x)