Internal
problem
ID
[3036]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
12,
page
46
Problem
number
:
35
Date
solved
:
Tuesday, March 04, 2025 at 03:47:16 PM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=y(x)*cos(x/y(x))-(y(x)+x*cos(x/y(x)))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(y[x]*Cos[x/y[x]])-(y[x]+x*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*cos(x/y(x)) - y(x))*Derivative(y(x), x) + y(x)*cos(x/y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)