Internal
problem
ID
[8972]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
5.0
Problem
number
:
11
Date
solved
:
Wednesday, March 05, 2025 at 07:13:27 AM
CAS
classification
:
[[_2nd_order, _quadrature]]
Solve
Using series expansion around
The type of the expansion point is first determined. This is done on the homogeneous part of the ODE.
The following is summary of singularities for the above ode. Writing the ode as
Where
Combining everything together gives the following summary of singularities for the ode as
Regular singular points :
Irregular singular points :
Order:=6; ode:=diff(diff(y(x),x),x) = 1/x; dsolve(ode,y(x),type='series',x=0);
Maple trace
`Methods for second order ODEs: --- Trying classification methods --- trying a quadrature <- quadrature successful`
Maple step by step
ode=D[y[x],{x,2}]==1/x; ic={}; AsymptoticDSolveValue[{ode,ic},y[x],{x,0,5}]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), (x, 2)) - 1/x,0) ics = {} dsolve(ode,func=y(x),ics=ics,hint="2nd_power_series_regular",x0=0,n=6)
ValueError : ODE Derivative(y(x), (x, 2)) - 1/x does not match hint 2nd_power_series_regular