Internal
problem
ID
[5313]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
1.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
FIRST
DEGREE,
page
223
Problem
number
:
702
Date
solved
:
Tuesday, September 30, 2025 at 12:29:21 PM
CAS
classification
:
[_rational, [_1st_order, `_with_symmetry_[F(x)*G(y),0]`]]
ode:=(5*x-y(x)-7*y(x)^3*x)*diff(y(x),x)+5*y(x)-y(x)^4 = 0; dsolve(ode,y(x), singsol=all);
ode=(5 x-y[x]-7 x y[x]^3)D[y[x],x]+5 y[x]-y[x]^4==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-7*x*y(x)**3 + 5*x - y(x))*Derivative(y(x), x) - y(x)**4 + 5*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out