Internal
problem
ID
[7224]
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
:
19
Date
solved
:
Tuesday, September 30, 2025 at 04:25:44 PM
CAS
classification
:
[[_Emden, _Fowler]]
ode:=diff(diff(y(x),x),x)+1/4*y(x)/x = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+y[x]/(4*x)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), (x, 2)) + y(x)/(4*x),0) ics = {} dsolve(ode,func=y(x),ics=ics)