Internal
problem
ID
[4720]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
1.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
FIRST
DEGREE,
page
223
Problem
number
:
116
Date
solved
:
Tuesday, September 30, 2025 at 08:19:43 AM
CAS
classification
:
[_separable]
ode:=diff(y(x),x)+tan(x)*sec(x)*cos(y(x))^2 = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+Tan[x]*Sec[x]*Cos[y[x]]^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) + cos(y(x))**2*tan(x)/cos(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out