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