Internal
problem
ID
[14091]
Book
:
DIFFERENTIAL
and
INTEGRAL
CALCULUS.
VOL
I.
by
N.
PISKUNOV.
MIR
PUBLISHERS,
Moscow
1969.
Section
:
Chapter
8.
Differential
equations.
Exercises
page
595
Problem
number
:
17
Date
solved
:
Wednesday, March 05, 2025 at 10:31:00 PM
CAS
classification
:
[_separable]
ode:=diff(r(t),t)+r(t)*tan(t) = 0; dsolve(ode,r(t), singsol=all);
ode=D[r[t],t]+r[t]*Tan[t]==0; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(r(t)*tan(t) + Derivative(r(t), t),0) ics = {} dsolve(ode,func=r(t),ics=ics)