Internal
problem
ID
[16425]
Book
:
Ordinary
Differential
Equations.
An
introduction
to
the
fundamentals.
Kenneth
B.
Howell.
second
edition.
CRC
Press.
FL,
USA.
2020
Section
:
Chapter
6.
Simplifying
through
simplifiction.
Additional
exercises.
page
114
Problem
number
:
6.7
(o)
Date
solved
:
Thursday, October 02, 2025 at 01:31:26 PM
CAS
classification
:
[`y=_G(x,y')`]
ode:=cos(y(x))*diff(y(x),x) = exp(-x)-sin(y(x)); dsolve(ode,y(x), singsol=all);
ode=Cos[y[x]]*D[y[x],x]==Exp[-x]-Sin[y[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(y(x))*Derivative(y(x), x) - exp(-x),0) ics = {} dsolve(ode,func=y(x),ics=ics)