Internal
problem
ID
[14012]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
2,
Second-Order
Differential
Equations.
section
2.1.2-8.
Other
equations.
Problem
number
:
238
Date
solved
:
Thursday, October 02, 2025 at 09:08:53 AM
CAS
classification
:
[[_Emden, _Fowler]]
ode:=x^6*diff(diff(y(x),x),x)-x^5*diff(y(x),x)+a*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=x^6*D[y[x],{x,2}]-x^5*D[y[x],x]+a*y[x]==0; 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)) - x**5*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)