Internal
problem
ID
[19834]
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
29.
Problems
at
page
81
Problem
number
:
4
Date
solved
:
Thursday, October 02, 2025 at 04:46:25 PM
CAS
classification
:
[_separable]
ode:=sec(x)^2*tan(y(x))*diff(y(x),x)+sec(y(x))^2*tan(x) = 0; dsolve(ode,y(x), singsol=all);
ode=Sec[x]^2*Tan[y[x]]*D[y[x],x]+Sec[y[x]]^2*Tan[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(tan(x)/cos(y(x))**2 + tan(y(x))*Derivative(y(x), x)/cos(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)