Internal
problem
ID
[16316]
Book
:
Ordinary
Differential
Equations.
An
introduction
to
the
fundamentals.
Kenneth
B.
Howell.
second
edition.
CRC
Press.
FL,
USA.
2020
Section
:
Chapter
3.
Some
basics
about
First
order
equations.
Additional
exercises.
page
63
Problem
number
:
3.4
f
Date
solved
:
Thursday, October 02, 2025 at 01:18:44 PM
CAS
classification
:
[_quadrature]
ode:=y(x)^3-25*y(x)+diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=y[x]^3-25*y[x]+D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x)**3 - 25*y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)