Internal
problem
ID
[2300]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.2.
Page
9
Problem
number
:
2
Date
solved
:
Saturday, March 29, 2025 at 11:53:14 PM
CAS
classification
:
[_separable]
ode:=t^(1/2)*sin(t)*y(t)+diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=t^(1/2)*Sin[t]*y[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)*y(t)*sin(t) + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)