Internal
problem
ID
[2859]
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
:
19
Date
solved
:
Sunday, March 30, 2025 at 12:34:42 AM
CAS
classification
:
[_separable]
ode:=tan(x)*sin(x)^2+cos(x)^2*cot(y(x))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=Tan[x]*Sin[x]^2+Cos[x]^2*Cot[y[x]]*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sin(x)**2*tan(x) + cos(x)**2*Derivative(y(x), x)/tan(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)