Internal
problem
ID
[21521]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
I.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
5.
Integrating
factors.
Page
72.
Problem
number
:
5-8
Date
solved
:
Thursday, October 02, 2025 at 07:46:43 PM
CAS
classification
:
[_linear]
ode:=diff(x(t),t)-tan(t)*x(t) = sin(t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]-Tan[t]*x[t]==Sin[t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-x(t)*tan(t) - sin(t) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)