Internal
problem
ID
[8770]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
58
Date
solved
:
Wednesday, March 05, 2025 at 06:46:21 AM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x) = -4*sin(x-y(x))-4; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==4*Sin[y[x]-x]-4; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Timed out
from sympy import * x = symbols("x") y = Function("y") ode = Eq(4*sin(x - y(x)) + Derivative(y(x), x) + 4,0) ics = {} dsolve(ode,func=y(x),ics=ics)