Internal
problem
ID
[5726]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
3
Problem
number
:
5
Date
solved
:
Sunday, March 30, 2025 at 10:06:17 AM
CAS
classification
:
[[_homogeneous, `class A`], _exact, _dAlembert]
ode:=1+exp(x/y(x))+exp(x/y(x))*(1-x/y(x))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(1+Exp[x/y[x]])+Exp[x/y[x]]*(1-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/y(x) + 1)*exp(x/y(x))*Derivative(y(x), x) + exp(x/y(x)) + 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)
RecursionError : maximum recursion depth exceeded