Internal
problem
ID
[13253]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.3
(Linear
equations).
Exercises
page
56
Problem
number
:
11
Date
solved
:
Monday, March 31, 2025 at 07:43:36 AM
CAS
classification
:
[_linear]
ode:=diff(r(t),t)+r(t)*tan(t) = cos(t); dsolve(ode,r(t), singsol=all);
ode=D[r[t],t]+r[t]*Tan[t]==Cos[t]; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(r(t)*tan(t) - cos(t) + Derivative(r(t), t),0) ics = {} dsolve(ode,func=r(t),ics=ics)