Internal
problem
ID
[22531]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
two.
First
order
and
simple
higher
order
ordinary
differential
equations.
A
Exercises
at
page
47
Problem
number
:
1
(f)
Date
solved
:
Thursday, October 02, 2025 at 08:46:47 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x)*G(y),0]`], [_Abel, `2nd type`, `class B`]]
ode:=diff(r(t),t) = r(t)*sin(t)/(2*r(t)*cos(t)-1); dsolve(ode,r(t), singsol=all);
ode=D[r[t],t]== (r[t]*Sin[t])/( 2*r[t]*Cos[t]-1); ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(Derivative(r(t), t) - r(t)*sin(t)/(2*r(t)*cos(t) - 1),0) ics = {} dsolve(ode,func=r(t),ics=ics)