Internal
problem
ID
[1243]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Miscellaneous
problems,
end
of
chapter
2.
Page
133
Problem
number
:
26
Date
solved
:
Saturday, March 29, 2025 at 10:49:47 PM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=x*diff(y(x),x) = exp(y(x)/x)*x+y(x); dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x] == Exp[y[x]/x]*x+y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*exp(y(x)/x) + x*Derivative(y(x), x) - y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
RecursionError : maximum recursion depth exceeded