Internal
problem
ID
[2990]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
11,
page
45
Problem
number
:
9
Date
solved
:
Tuesday, September 30, 2025 at 06:14:04 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=csc(y(x))*cot(y(x))*diff(y(x),x) = csc(y(x))+exp(x); dsolve(ode,y(x), singsol=all);
ode=Csc[y[x]]*Cot[y[x]]*D[y[x],x]==(Csc[y[x]]+Exp[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-exp(x) - 1/sin(y(x)) + Derivative(y(x), x)/(sin(y(x))*tan(y(x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)