Internal
problem
ID
[9926]
Book
:
Collection
of
Kovacic
problems
Section
:
section
1
Problem
number
:
776
Date
solved
:
Wednesday, March 05, 2025 at 08:01:01 AM
CAS
classification
:
[[_Emden, _Fowler]]
ode:=x^4*diff(diff(y(x),x),x)+lambda*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=x^4*D[y[x],{x,2}]+\[Lambda]*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") cg = symbols("cg") y = Function("y") ode = Eq(cg*y(x) + x**4*Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)