Internal
problem
ID
[2306]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.2.
Page
9
Problem
number
:
8
Date
solved
:
Saturday, March 29, 2025 at 11:53:29 PM
CAS
classification
:
[_separable]
With initial conditions
ode:=(t^2+1)^(1/2)*y(t)+diff(y(t),t) = 0; ic:=y(0) = 5^(1/2); dsolve([ode,ic],y(t), singsol=all);
ode=(t^2+1)^(1/2)*y[t]+D[y[t],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)