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