Internal
problem
ID
[2294]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.2.
Page
6
Problem
number
:
Example
3
Date
solved
:
Tuesday, September 30, 2025 at 05:26:03 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=diff(y(t),t)+sin(t)*y(t) = 0; ic:=[y(0) = 3/2]; dsolve([ode,op(ic)],y(t), singsol=all);
ode=D[y[t],t]+Sin[t]*y[t]==0; ic=y[0]==3/2; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t)*sin(t) + Derivative(y(t), t),0) ics = {y(0): 3/2} dsolve(ode,func=y(t),ics=ics)