Internal
problem
ID
[19378]
Book
:
DIFFERENTIAL
EQUATIONS
WITH
APPLICATIONS
AND
HISTORICAL
NOTES
by
George
F.
Simmons.
3rd
edition.
2017.
CRC
press,
Boca
Raton
FL.
Section
:
Chapter
1.
The
Nature
of
Differential
Equations.
Separable
Equations.
Section
2.
Problems
at
page
9
Problem
number
:
3
(e)
Date
solved
:
Thursday, October 02, 2025 at 04:20:00 PM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=x*(x^2-4)*diff(y(x),x) = 1; ic:=[y(1) = 0]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=x*(x^2-4)*D[y[x],x]==1; ic={y[1]==0}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*(x**2 - 4)*Derivative(y(x), x) - 1,0) ics = {y(1): 0} dsolve(ode,func=y(x),ics=ics)