Internal
problem
ID
[10572]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
571
Date
solved
:
Sunday, March 30, 2025 at 06:08:02 PM
CAS
classification
:
[`y=_G(x,y')`]
ode:=a*x^n*f(diff(y(x),x))+x*diff(y(x),x)-y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=a*x^n*f[D[y[x],x]] - y[x] + x*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") n = symbols("n") y = Function("y") f = Function("f") ode = Eq(a*x**n*f(Derivative(y(x), x)) + x*Derivative(y(x), x) - y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : multiple generators [_X0, f(_X0)] No algorithms are implemented to solve equation _X0*x + a*x**n*f(_X0) - y(x)