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