Internal
problem
ID
[24250]
Book
:
A
short
course
in
Differential
Equations.
Earl
D.
Rainville.
Second
edition.
1958.
Macmillan
Publisher,
NY.
CAT
58-5010
Section
:
Chapter
2.
Equations
of
the
first
order
and
first
degree.
Exercises
at
page
21
Problem
number
:
15
Date
solved
:
Thursday, October 02, 2025 at 10:01:58 PM
CAS
classification
:
[_separable]
ode:=diff(theta(z),z) = z*(-z^2+1)*sec(theta(z))^2; dsolve(ode,theta(z), singsol=all);
ode=D[\[Theta][z],z]==z*(1-z^2)*Sec[ \[Theta][z] ]^2; ic={}; DSolve[{ode,ic},\[Theta][z],z,IncludeSingularSolutions->True]
from sympy import * z = symbols("z") y = Function("y") ode = Eq(-z*(1 - z**2)*sec(y(z))**2 + Derivative(y(z), z),0) ics = {} dsolve(ode,func=y(z),ics=ics)