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