Internal
problem
ID
[11353]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
39
Date
solved
:
Tuesday, September 30, 2025 at 08:03:58 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x)-a3*y(x)^3-a2*y(x)^2-a1*y(x)-a0 = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] - a3*y[x]^3 - a2*y[x]^2 - a1*y[x] - a0==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a0 = symbols("a0") a1 = symbols("a1") a2 = symbols("a2") a3 = symbols("a3") y = Function("y") ode = Eq(-a0 - a1*y(x) - a2*y(x)**2 - a3*y(x)**3 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)