Internal
problem
ID
[6103]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
2.
Separable
equations.
page
398
Problem
number
:
11
Date
solved
:
Wednesday, March 05, 2025 at 12:12:44 AM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=2*diff(y(x),x) = 3*(y(x)-2)^(1/3); ic:=y(1) = 3; dsolve([ode,ic],y(x), singsol=all);
ode=2*D[y[x],x]==3*(y[x]-2)^(1/3); ic={y[1]==3}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-3*(y(x) - 2)**(1/3) + 2*Derivative(y(x), x),0) ics = {y(1): 3} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : Initial conditions produced too many solutions for constants