Internal
problem
ID
[2855]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
5,
page
21
Problem
number
:
15
Date
solved
:
Tuesday, March 04, 2025 at 02:51:25 PM
CAS
classification
:
[_separable]
ode:=sec(x)*cos(y(x))^2 = cos(x)*sin(y(x))*diff(y(x),x); dsolve(ode,y(x), singsol=all);
ode=Sec[x]*Cos[y[x]]^2==Cos[x]*Sin[y[x]]*D[y[x],x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-sin(y(x))*cos(x)*Derivative(y(x), x) + cos(y(x))**2/cos(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)