I have a second order differential equation $x^2\cdot y''(x)+x\cdot y'(x)+(x^2-10)=0$ with the initial condition $y(100)=1$ and $y'(100)=0$. I want to evaluate $y(x)$ when $x=103$ with 8 digit accuracy.
The first step is rewrite this equation to a system of first order equation. $\begin{cases} y'=w\\ w' = -\frac{w}{x}-\frac{10}{x^2}+1\end{cases}$ with the initial condition $\begin{cases} y(100)=1\\ w(100)=0\end{cases}$. Then I can use fourth-order Runge-Kutta methods to solve the system. In order to achieve 8 digit accuracy, I need to decide the step size $h$. Solving $h^4\le 10^{-8}$, I get $h=0.01$.
Is this seems a reasonable approach? Is there anything special with such a differential equation with the initial condition so that I need use other method to evaluate it?