Internal
problem
ID
[4213]
Book
:
Advanced
Mathematica,
Book2,
Perkin
and
Perkin,
1992
Section
:
Chapter
11.3,
page
316
Problem
number
:
1
Date
solved
:
Tuesday, September 30, 2025 at 07:07:26 AM
CAS
classification
:
[_separable]
ode:=3*y(x)^2*diff(y(x),x) = 2*x-1; dsolve(ode,y(x), singsol=all);
ode=3*y[x]^2*D[y[x],x]==2*x-1; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x + 3*y(x)**2*Derivative(y(x), x) + 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)