Internal
problem
ID
[25079]
Book
:
Ordinary
Differential
Equations.
By
William
Adkins
and
Mark
G
Davidson.
Springer.
NY.
2010.
ISBN
978-1-4614-3617-1
Section
:
Chapter
1.
First
order
differential
equations.
Exercises
at
page
41
Problem
number
:
15
Date
solved
:
Thursday, October 02, 2025 at 11:49:30 PM
CAS
classification
:
[_separable]
ode:=diff(y(t),t)+tan(t)*y(t) = tan(t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,1}] + Tan[t]*y[t]==Tan[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t)*tan(t) - tan(t) + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)