Internal
problem
ID
[1699]
Book
:
Elementary
differential
equations
with
boundary
value
problems.
William
F.
Trench.
Brooks/Cole
2001
Section
:
Chapter
2,
First
order
equations.
Exact
equations.
Section
2.5
Page
79
Problem
number
:
20
Date
solved
:
Tuesday, March 04, 2025 at 01:35:21 PM
CAS
classification
:
[_separable]
With initial conditions
ode:=(y(x)^3-1)*exp(x)+3*y(x)^2*(1+exp(x))*diff(y(x),x) = 0; ic:=y(0) = 0; dsolve([ode,ic],y(x), singsol=all);
ode=((y[x]^3-1)*Exp[x])+(3*y[x]^2*(Exp[x]+1))*D[y[x],x]==0; 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)**3 - 1)*exp(x) + (3*exp(x) + 3)*y(x)**2*Derivative(y(x), x),0) ics = {y(0): 0} dsolve(ode,func=y(x),ics=ics)