Internal
problem
ID
[18477]
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
:
Monday, March 31, 2025 at 05:35:20 PM
CAS
classification
:
[_separable]
Time used: 0.159 (sec)
Solve
The ode
is separable as it can be written as
Where
Integrating gives
Solving for
Summary of solutions found
ode:=sec(x)^2*tan(y(x))*diff(y(x),x)+sec(y(x))^2*tan(x) = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear trying Bernoulli trying separable <- separable successful
Maple step by step
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)