Internal
problem
ID
[16637]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
4.
Equations
with
variables
separable
and
equations
reducible
to
them.
Exercises
page
38
Problem
number
:
59
Date
solved
:
Thursday, March 13, 2025 at 08:28:22 AM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x) = sin(x-y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Sin[x-y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-sin(x - y(x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)