Internal
problem
ID
[7694]
Book
:
Basic
Training
in
Mathematics.
By
R.
Shankar.
Plenum
Press.
NY.
1995
Section
:
Chapter
10,
Differential
equations.
Section
10.3,
ODEs
with
variable
Coefficients.
First
order.
page
315
Problem
number
:
10.3.9
(b)
Date
solved
:
Tuesday, September 30, 2025 at 04:56:08 PM
CAS
classification
:
[[_homogeneous, `class G`], _rational, _Bernoulli]
ode:=3*x*diff(y(x),x)+y(x)+x^2*y(x)^4 = 0; dsolve(ode,y(x), singsol=all);
ode=3*x*D[y[x],x]+y[x]+x^2*y[x]^4==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**2*y(x)**4 + 3*x*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)