Internal
problem
ID
[2996]
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
:
15
Date
solved
:
Sunday, March 30, 2025 at 01:04:14 AM
CAS
classification
:
[_separable]
ode:=cos(y(x))*diff(y(x),x)+(sin(y(x))-1)*cos(x) = 0; dsolve(ode,y(x), singsol=all);
ode=Cos[y[x]]*D[y[x],x]+(Sin[y[x]]-1)*Cos[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((sin(y(x)) - 1)*cos(x) + cos(y(x))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)