Internal
problem
ID
[7551]
Book
:
THEORY
OF
DIFFERENTIAL
EQUATIONS
IN
ENGINEERING
AND
MECHANICS.
K.T.
CHAU,
CRC
Press.
Boca
Raton,
FL.
2018
Section
:
Chapter
3.
Ordinary
Differential
Equations.
Section
3.6
Summary
and
Problems.
Page
218
Problem
number
:
Problem
3.12
Date
solved
:
Sunday, March 30, 2025 at 12:14:44 PM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=diff(diff(u(theta),theta),theta)-cot(theta)*diff(u(theta),theta) = 0; dsolve(ode,u(theta), singsol=all);
ode=D[ u[\[Theta]], { \[Theta],2} ]-Cot[\[Theta]]*D[ u[\[Theta]], \[Theta] ]==0; ic={}; DSolve[{ode,ic},u[\[Theta]],\[Theta],IncludeSingularSolutions->True]
from sympy import * theta = symbols("theta") u = Function("u") ode = Eq(Derivative(u(theta), (theta, 2)) - Derivative(u(theta), theta)/tan(theta),0) ics = {} dsolve(ode,func=u(theta),ics=ics)