Internal
problem
ID
[21919]
Book
:
Differential
Equations
By
Kaj
L.
Nielsen.
Second
edition
1966.
Barnes
and
nobel.
66-28306
Section
:
Chapter
III.
First
order
differential
equations
of
the
first
degree.
Ex.
III
at
page
35
Problem
number
:
2
(c)
Date
solved
:
Thursday, October 02, 2025 at 08:09:39 PM
CAS
classification
:
[_separable]
With initial conditions
ode:=exp(x)*sec(y(x))+(exp(x)+1)*sec(y(x))*tan(y(x))*diff(y(x),x) = 0; ic:=[y(3) = 1/3*Pi]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=Exp[x]*Sec[y[x]]+(1+Exp[x])*Sec[y[x]]*Tan[y[x]]*D[y[x],x]==0 ; ic={y[3]==Pi/3}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((exp(x) + 1)*tan(y(x))*sec(y(x))*Derivative(y(x), x) + exp(x)*sec(y(x)),0) ics = {y(3): pi/3} dsolve(ode,func=y(x),ics=ics)
ValueError : sec(y(x)) is not a solvable differential equation in y(x)