Let's observe the convergence of the forward-difference formula applied to the function at .
f = @(x) sin( exp(x+1) );
FD1 = [ (f(0.1)-f(0)) /0.1
(f(0.05)-f(0)) /0.05
(f(0.025)-f(0)) /0.025 ]
FD1 =
-6319/2308 -776/297 -1999/785
It's not clear that the sequence is converging. As predicted, however, the errors are cut approximately by a factor of 2 when h is divided by 2.
exact_value = cos(exp(1))*exp(1);
err = exact_value - FD1
err =
593/2285 137/1019 224/3287
Asymptotically as , the error is proportional to h.