Internal
problem
ID
[2506]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.4
separable
equations.
Excercises
page
24
Problem
number
:
19
Date
solved
:
Sunday, March 30, 2025 at 12:05:40 AM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=exp(t/y(t))*(y(t)-t)*diff(y(t),t)+y(t)*(1+exp(t/y(t))) = 0; dsolve(ode,y(t), singsol=all);
ode=Exp[t/y[t]]*(y[t]-t)*D[y[t],t]+y[t]*(1+Exp[t/y[t]])==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq((-t + y(t))*exp(t/y(t))*Derivative(y(t), t) + (exp(t/y(t)) + 1)*y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)