Internal
problem
ID
[55]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.4
(separable
equations).
Problems
at
page
43
Problem
number
:
15
Date
solved
:
Tuesday, September 30, 2025 at 03:41:02 AM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = (x-1)*y(x)^5/x^2/(2*y(x)^3-y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]== ((x-1)*y[x]^5)/(x^2*(2*y[x]^3-y[x])); DSolve[ode,y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - (x - 1)*y(x)**5/(x**2*(2*y(x)**3 - y(x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out