Internal
problem
ID
[12678]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
2,
linear
second
order
Problem
number
:
1400
Date
solved
:
Wednesday, October 01, 2025 at 02:19:31 AM
CAS
classification
:
[[_Emden, _Fowler]]
ode:=diff(diff(y(x),x),x) = 1/x*diff(y(x),x)-a/x^6*y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}] == -((a*y[x])/x^6) + D[y[x],x]/x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(a*y(x)/x**6 + Derivative(y(x), (x, 2)) - Derivative(y(x), x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)