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