Internal
problem
ID
[14542]
Book
:
DIFFERENTIAL
EQUATIONS
by
Paul
Blanchard,
Robert
L.
Devaney,
Glen
R.
Hall.
4th
edition.
Brooks/Cole.
Boston,
USA.
2012
Section
:
Chapter
1.
First-Order
Differential
Equations.
Exercises
section
1.2.
page
33
Problem
number
:
24
Date
solved
:
Thursday, March 13, 2025 at 03:33:08 AM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x) = sec(y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Sec[y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - 1/cos(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)