Internal
problem
ID
[6854]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
2
Problem
number
:
10.3
Date
solved
:
Tuesday, September 30, 2025 at 03:55:55 PM
CAS
classification
:
[_Bernoulli]
ode:=diff(z(x),x)+2*x*z(x) = 2*a*x^3*z(x)^3; dsolve(ode,z(x), singsol=all);
ode=D[z[x],x]+2*x*z[x]==2*a*x^3*z[x]; ic={}; DSolve[{ode,ic},z[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") z = Function("z") ode = Eq(-2*a*x**3*z(x)**3 + 2*x*z(x) + Derivative(z(x), x),0) ics = {} dsolve(ode,func=z(x),ics=ics)