Internal
problem
ID
[14552]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
1,
section
1.3.
Exercises
page
22
Problem
number
:
8
Date
solved
:
Thursday, October 02, 2025 at 09:38:42 AM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=diff(y(x),x) = y(x)^(1/3); ic:=[y(0) = 0]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=D[y[x],x]==y[x]^(1/3); ic={y[0]==0}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)**(1/3) + Derivative(y(x), x),0) ics = {y(0): 0} dsolve(ode,func=y(x),ics=ics)