Internal
problem
ID
[3444]
Book
:
Ordinary
Differential
Equations,
Robert
H.
Martin,
1983
Section
:
Problem
1.2-1,
page
12
Problem
number
:
1.2-1
(g)
Date
solved
:
Tuesday, September 30, 2025 at 06:38:32 AM
CAS
classification
:
[_linear]
ode:=diff(y(t),t) = y(t)*tan(t)+sec(t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]==y[t]*Tan[t]+Sec[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) + Derivative(y(t), t) - 1/cos(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)