Internal
problem
ID
[22638]
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
65
Problem
number
:
15
Date
solved
:
Thursday, October 02, 2025 at 08:57:12 PM
CAS
classification
:
[_exact, [_1st_order, `_with_symmetry_[F(x)*G(y),0]`], [_Abel, `2nd type`, `class B`]]
ode:=r(t)^2*sin(t) = (2*r(t)*cos(t)+10)*diff(r(t),t); dsolve(ode,r(t), singsol=all);
ode=r[t]^2*Sin[t]==(2*r[t]*Cos[t]+10)*D[r[t],t]; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(-(2*r(t)*cos(t) + 10)*Derivative(r(t), t) + r(t)**2*sin(t),0) ics = {} dsolve(ode,func=r(t),ics=ics)