Find $\dfrac{dy}{dx}$ at x = 0.1 from the following data. $$ \begin{array}{|c|r|} \hline x & 0.1 & 0.2 & 0.3 & 0.4 \\ \hline y & 0.9975 & 0.9900 & 0.9776 & 0.9604 \\ \hline \end{array} $$
I know that Euler's method and Runge-Kutta method give the value of y when $\frac{dy}{dx}$ is given. But this problem is the opposite of it i.e. finding $\frac{dy}{dx}$ when y values are given. I am not getting any idea how to proceed. Can some one please help me?
Very rough but simple method: $$y'(0.1)\approx\frac{y(0.2) - y(0.1)}{0.2 - 0.1}.$$ See
http://www2.math.umd.edu/~dlevy/classes/amsc466/lecture-notes/differentiation-chap.pdf,
https://en.wikipedia.org/wiki/Numerical_differentiation
...