Internal
problem
ID
[98]
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.5
(linear
equations).
Problems
at
page
54
Problem
number
:
26
Date
solved
:
Saturday, March 29, 2025 at 04:31:19 PM
CAS
classification
:
[_linear]
ode:=(1-4*x(y)*y^2)/diff(x(y),y) = y^3; dsolve(ode,x(y), singsol=all);
ode=(1-4*x[y]*y^2)*1/D[x[y],y]==y^3; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(-y**3 + (-4*y**2*x(y) + 1)/Derivative(x(y), y),0) ics = {} dsolve(ode,func=x(y),ics=ics)