Internal
problem
ID
[2479]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.2.
Linear
equations.
Excercises
page
9
Problem
number
:
8
Date
solved
:
Tuesday, September 30, 2025 at 05:36:35 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=diff(y(t),t)+(t^2+1)^(1/2)*y(t) = 0; ic:=[y(0) = 5^(1/2)]; dsolve([ode,op(ic)],y(t), singsol=all);
ode=D[y[t],t]+Sqrt[1+t^2]*y[t]==0; ic={y[0]==Sqrt[5]}; 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) + Derivative(y(t), t),0) ics = {y(0): sqrt(5)} dsolve(ode,func=y(t),ics=ics)