Internal
problem
ID
[1233]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Miscellaneous
problems,
end
of
chapter
2.
Page
133
Problem
number
:
16
Date
solved
:
Saturday, March 29, 2025 at 10:48:37 PM
CAS
classification
:
[NONE]
ode:=diff(y(x),x) = (-exp(2*y(x))*cos(x)+cos(y(x))/exp(x))/(2*exp(2*y(x))*sin(x)-sin(y(x))/exp(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (-Exp[2*y[x]]*Cos[x]+Cos[y[x]]/Exp[x])/(2*Exp[2*y[x]]*Sin[x]-Sin[y[x]]/Exp[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - (-exp(2*y(x))*cos(x) + exp(-x)*cos(y(x)))/(2*exp(2*y(x))*sin(x) - exp(-x)*sin(y(x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out