Internal
problem
ID
[11559]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
6,
non-linear
second
order
Problem
number
:
1599
(6.9)
Date
solved
:
Sunday, March 30, 2025 at 08:25:09 PM
CAS
classification
:
[NONE]
ode:=diff(diff(y(x),x),x)+d+b*x*y(x)+c*y(x)+a*y(x)^3 = 0; dsolve(ode,y(x), singsol=all);
ode=d + c*y[x] + b*x*y[x] + a*y[x]^3 + D[y[x],{x,2}] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") d = symbols("d") y = Function("y") ode = Eq(a*y(x)**3 + b*x*y(x) + c*y(x) + d + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : solve: Cannot solve a*y(x)**3 + b*x*y(x) + c*y(x) + d + Derivative(y(x), (x, 2))