Internal
problem
ID
[9530]
Book
:
Collection
of
Kovacic
problems
Section
:
section
1
Problem
number
:
365
Date
solved
:
Sunday, March 30, 2025 at 02:36:54 PM
CAS
classification
:
[[_Emden, _Fowler]]
ode:=diff(diff(u(x),x),x)+1/x^2*u(x) = 0; dsolve(ode,u(x), singsol=all);
ode=D[u[x],{x,2}]+1/x^2*u[x]==0; ic={}; DSolve[{ode,ic},u[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") u = Function("u") ode = Eq(Derivative(u(x), (x, 2)) + u(x)/x**2,0) ics = {} dsolve(ode,func=u(x),ics=ics)