Internal
problem
ID
[19852]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
33.
Problems
at
page
91
Problem
number
:
2
(eq
39)
Date
solved
:
Thursday, October 02, 2025 at 04:48:32 PM
CAS
classification
:
[_quadrature]
ode:=sec(theta)^2 = m/k*diff(s(theta),theta); dsolve(ode,s(theta), singsol=all);
ode=Sec[theta]^2==m/k*D[s[theta],theta]; ic={}; DSolve[{ode,ic},s[theta],theta,IncludeSingularSolutions->True]
from sympy import * theta = symbols("theta") k = symbols("k") m = symbols("m") s = Function("s") ode = Eq(cos(theta)**(-2) - m*Derivative(s(theta), theta)/k,0) ics = {} dsolve(ode,func=s(theta),ics=ics)