Internal
problem
ID
[6214]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
13.
Miscellaneous
problems.
page
466
Problem
number
:
7
Date
solved
:
Sunday, March 30, 2025 at 10:43:20 AM
CAS
classification
:
[[_homogeneous, `class G`], _rational, _Bernoulli]
ode:=3*x^3*y(x)^2*diff(y(x),x)-x^2*y(x)^3 = 1; dsolve(ode,y(x), singsol=all);
ode=3*x^3*y[x]^2*D[y[x],x]-x^2*y[x]^3==1; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(3*x**3*y(x)**2*Derivative(y(x), x) - x**2*y(x)**3 - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)