Internal
problem
ID
[7763]
Book
:
Engineering
Mathematics.
By
K.
A.
Stroud.
5th
edition.
Industrial
press
Inc.
NY.
2001
Section
:
Program
24.
First
order
differential
equations.
Further
problems
24.
page
1068
Problem
number
:
47
Date
solved
:
Tuesday, September 30, 2025 at 05:05:07 PM
CAS
classification
:
[_separable]
With initial conditions
ode:=r(theta)*tan(theta)/(a^2-r(theta)^2)*diff(r(theta),theta) = 1; ic:=[r(1/4*Pi) = 0]; dsolve([ode,op(ic)],r(theta), singsol=all);
ode=r[\[Theta]]*Tan[\[Theta]]/(a^2-r[\[Theta]]^2)*D[ r[\[Theta]], \[Theta] ]==1; ic={r[Pi/4]==0}; DSolve[{ode,ic},r[\[Theta]],\[Theta],IncludeSingularSolutions->True]
from sympy import * theta = symbols("theta") a = symbols("a") r = Function("r") ode = Eq(-1 + r(theta)*tan(theta)*Derivative(r(theta), theta)/(a**2 - r(theta)**2),0) ics = {r(pi/4): 0} dsolve(ode,func=r(theta),ics=ics)