Internal
problem
ID
[2529]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.10.
Existence-uniqueness
theorem.
Excercises
page
80
Problem
number
:
11
Date
solved
:
Sunday, March 30, 2025 at 12:08:51 AM
CAS
classification
:
[_Abel]
With initial conditions
ode:=diff(y(t),t) = y(t)^3+exp(-5*t); ic:=y(0) = 2/5; dsolve([ode,ic],y(t), singsol=all);
ode=D[y[t],t]==y[t]^3+Exp[5*t]; ic={y[0]==4/10}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
Not solved
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-y(t)**3 + Derivative(y(t), t) - exp(-5*t),0) ics = {y(0): 2/5} dsolve(ode,func=y(t),ics=ics)
NotImplementedError : The given ODE -y(t)**3 + Derivative(y(t), t) - exp(-5*t) cannot be solved by the lie group method