Internal
problem
ID
[10563]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
562
Date
solved
:
Sunday, March 30, 2025 at 06:05:55 PM
CAS
classification
:
[_dAlembert]
ode:=a*(diff(y(x),x)^3+1)^(1/3)+b*x*diff(y(x),x)-y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=-y[x] + b*x*D[y[x],x] + a*(1 + D[y[x],x]^3)^(1/3)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(a*(Derivative(y(x), x)**3 + 1)**(1/3) + b*x*Derivative(y(x), x) - y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out