Internal
problem
ID
[2972]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
10,
page
41
Problem
number
:
15
Date
solved
:
Sunday, March 30, 2025 at 01:02:44 AM
CAS
classification
:
[[_homogeneous, `class G`], _rational]
ode:=2*y(x) = (y(x)^4+x)*diff(y(x),x); dsolve(ode,y(x), singsol=all);
ode=2*y[x]==(y[x]^4+x)*D[y[x],x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-x - y(x)**4)*Derivative(y(x), x) + 2*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - 2*y(x)/(x + y(x)**4) cannot be solved by the factorable group method