Internal
problem
ID
[2307]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.2.
Page
9
Problem
number
:
9
Date
solved
:
Saturday, March 29, 2025 at 11:53:33 PM
CAS
classification
:
[_separable]
ode:=(t^2+1)^(1/2)*y(t)/exp(t)+diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=(t^2+1)^(1/2)*y[t]/Exp[t]+D[y[t],t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(sqrt(t**2 + 1)*y(t)*exp(-t) + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)