Internal
problem
ID
[6264]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.2,
Separable
Equations.
Exercises.
page
46
Problem
number
:
9
Date
solved
:
Sunday, March 30, 2025 at 10:45:13 AM
CAS
classification
:
[_separable]
ode:=diff(x(t),t) = t/x(t)/exp(t+2*x(t)); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==t/(x[t]*Exp[t+2*x[t]]); ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t*exp(-t - 2*x(t))/x(t) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)