Internal
problem
ID
[4306]
Book
:
An
introduction
to
the
solution
and
applications
of
differential
equations,
J.W.
Searl,
1966
Section
:
Chapter
4,
Ex.
4.2
Problem
number
:
6
Date
solved
:
Tuesday, September 30, 2025 at 07:16:57 AM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=y(x)^2*diff(y(x),x) = 2+3*y(x)^6; ic:=[y(0) = 0]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=y[x]^2*D[y[x],x]==2+3*y[x]^6; ic=y[0]==0; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-3*y(x)**6 + y(x)**2*Derivative(y(x), x) - 2,0) ics = {y(0): 0} dsolve(ode,func=y(x),ics=ics)