Internal
problem
ID
[15481]
Book
:
DIFFERENTIAL
and
INTEGRAL
CALCULUS.
VOL
I.
by
N.
PISKUNOV.
MIR
PUBLISHERS,
Moscow
1969.
Section
:
Chapter
8.
Differential
equations.
Exercises
page
595
Problem
number
:
60
Date
solved
:
Thursday, October 02, 2025 at 10:18:21 AM
CAS
classification
:
[_linear]
ode:=diff(s(t),t)*cos(t)+s(t)*sin(t) = 1; dsolve(ode,s(t), singsol=all);
ode=D[s[t],t]*Cos[t]+s[t]*Sin[t]==1; ic={}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq(s(t)*sin(t) + cos(t)*Derivative(s(t), t) - 1,0) ics = {} dsolve(ode,func=s(t),ics=ics)