Internal
problem
ID
[10529]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
528
Date
solved
:
Sunday, March 30, 2025 at 05:45:16 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x)^3+a*diff(y(x),x)^2+b*y(x)+a*b*x = 0; dsolve(ode,y(x), singsol=all);
ode=a*b*x + b*y[x] + a*D[y[x],x]^2 + D[y[x],x]^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*b*x + a*Derivative(y(x), x)**2 + b*y(x) + Derivative(y(x), x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out