Internal
problem
ID
[671]
Book
:
Differential
equations
and
linear
algebra,
3rd
ed.,
Edwards
and
Penney
Section
:
Section
1.3.
Slope
fields
and
solution
curves.
Page
26
Problem
number
:
13
Date
solved
:
Saturday, March 29, 2025 at 10:12:09 PM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=diff(y(x),x) = y(x)^(1/3); ic:=y(0) = 1; dsolve([ode,ic],y(x), singsol=all);
ode=D[y[x],x] == y[x]^(1/3); ic=y[0]==1; 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): 1} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : Initial conditions produced too many solutions for constants