Internal
problem
ID
[2932]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
8,
page
34
Problem
number
:
20
Date
solved
:
Tuesday, September 30, 2025 at 06:10:33 AM
CAS
classification
:
[_exact]
ode:=x/y(x)*cos(x/y(x))+sin(x/y(x))+cos(x)-x^2/y(x)^2*cos(x/y(x))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(x/y[x]*Cos[x/y[x]]+Sin[x/y[x]]+Cos[x] )-x^2/y[x]^2*Cos[x/y[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(-x**2*cos(x/y(x))*Derivative(y(x), x)/y(x)**2 + x*cos(x/y(x))/y(x) + sin(x/y(x)) + cos(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out