Internal
problem
ID
[3427]
Book
:
Ordinary
Differential
Equations,
Robert
H.
Martin,
1983
Section
:
Problem
1.1-3,
page
6
Problem
number
:
1.1-3
(c)
Date
solved
:
Tuesday, March 04, 2025 at 04:38:26 PM
CAS
classification
:
[_separable]
With initial conditions
ode:=diff(y(t),t) = exp(t)/y(t); ic:=y(ln(2)) = -8; dsolve([ode,ic],y(t), singsol=all);
ode=D[y[t],t]==Exp[t]/y[t]; ic=y[Log[2]]==-8; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(Derivative(y(t), t) - exp(t)/y(t),0) ics = {y(log(2)): -8} dsolve(ode,func=y(t),ics=ics)