Internal
problem
ID
[6076]
Book
:
A
treatise
on
ordinary
and
partial
differential
equations
by
William
Woolsey
Johnson.
1913
Section
:
Chapter
IX,
Special
forms
of
differential
equations.
Examples
XVII.
page
247
Problem
number
:
2
Date
solved
:
Wednesday, March 05, 2025 at 12:11:13 AM
CAS
classification
:
[[_Emden, _Fowler]]
ode:=diff(diff(u(x),x),x)-a^2/x^(2/3)*u(x) = 0; dsolve(ode,u(x), singsol=all);
ode=D[u[x],{x,2}]-a^2*x^(-2/3)*u[x]==0; ic={}; DSolve[{ode,ic},u[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") u = Function("u") ode = Eq(-a**2*u(x)/x**(2/3) + Derivative(u(x), (x, 2)),0) ics = {} dsolve(ode,func=u(x),ics=ics)