19.19 problem 6

Internal problem ID [6459]
Internal file name [OUTPUT/5707_Sunday_June_05_2022_03_48_08_PM_91319078/index.tex]

Book: Differential Equations: Theory, Technique, and Practice by George Simmons, Steven Krantz. McGraw-Hill NY. 2007. 1st Edition.
Section: Chapter 4. Power Series Solutions and Special Functions. Section 4.4. REGULAR SINGULAR POINTS. Page 175
Problem number: 6.
ODE order: 2.
ODE degree: 1.

The type(s) of ODE detected by this program : "second_order_change_of_variable_on_y_method_2", "second order series method. Irregular singular point"

Maple gives the following as the ode type

[[_2nd_order, _with_linear_symmetries], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]

Unable to solve or complete the solution.

\[ \boxed {y^{\prime \prime }+\frac {y^{\prime }}{x^{2}}-\frac {y}{x^{3}}=0} \] With the expansion point for the power series method at \(x = 0\).

The type of the expansion point is first determined. This is done on the homogeneous part of the ODE. \[ y^{\prime \prime }+\frac {y^{\prime }}{x^{2}}-\frac {y}{x^{3}} = 0 \] The following is summary of singularities for the above ode. Writing the ode as \begin {align*} y^{\prime \prime }+p(x) y^{\prime } + q(x) y &=0 \end {align*}

Where \begin {align*} p(x) &= \frac {1}{x^{2}}\\ q(x) &= -\frac {1}{x^{3}}\\ \end {align*}

Table 191: Table \(p(x),q(x)\) singularites.
\(p(x)=\frac {1}{x^{2}}\)
singularity type
\(x = 0\) \(\text {``irregular''}\)
\(q(x)=-\frac {1}{x^{3}}\)
singularity type
\(x = 0\) \(\text {``irregular''}\)

Combining everything together gives the following summary of singularities for the ode as

Regular singular points : \([\infty ]\)

Irregular singular points : \([0]\)

Since \(x = 0\) is not an ordinary point, then we will now check if it is a regular singular point. Unable to solve since \(x = 0\) is not regular singular point. Terminating.

Verification of solutions N/A

Maple trace

`Methods for second order ODEs: 
--- Trying classification methods --- 
trying a quadrature 
checking if the LODE has constant coefficients 
checking if the LODE is of Euler type 
trying a symmetry of the form [xi=0, eta=F(x)] 
<- linear_1 successful`
 

Solution by Maple

Order:=8; 
dsolve(diff(y(x),x$2)+1/x^2*diff(y(x),x)-1/x^3*y(x)=0,y(x),type='series',x=0);
 

\[ \text {No solution found} \]

Solution by Mathematica

Time used: 0.026 (sec). Leaf size: 17

AsymptoticDSolveValue[y''[x]+1/x^2*y'[x]-1/x^3*y[x]==0,y[x],{x,0,7}]
 

\[ y(x)\to c_1 x+c_2 e^{\frac {1}{x}} x \]