Find the Local Truncation error in the form of $ \ o(h^k) \ $ of the multi-step method $ 2u_{i+3} = −3u_{i+2} + 6u_{i+1} − u_i + 6hf(t_{i+2}, u_{i+2}) $.
Also determine it is convergent or not.
Answer:
The scheme is $ \ 2u_{i+3} = −3u_{i+2} + 6u_{i+1} − u_i + 6hf(t_{i+2}, u_{i+2}) $.
We know that $ f(t_i,u_i )=\frac{u_{i+1}-u_i}{h} ,\ by \ Taylor \ series \ $
Then , $ \ 2u_{i+3} = −3u_{i+2} + 6u_{i+1} − u_i +6 u_{i+3}-6u_{i+2} $,
or,$ \ 4u_{i+3}-9u_{i+2}+6u_{i+1}-u_i=0 $
or, $ 4(u_{i+3}-u_{i+2})-5(u_{i+2}-u_{i+1})+(u_{i+1}-u_i)=0 $
Dividing by $ h \ $ ,
$ 4 .\frac{u_{i+3}-u_{i+2}}{h}-5. \frac{u_{i+2}-u_{i+1}}{h}+\frac{u_{i+1}-u_i}{h}=0 $ ,
or, $ 4 u'''+o(h^4)-5 u'' +o(h^2)+u'+o(h)=0, $
So the Local Truncation error is $ \ (h^4) \ $.
Am I right ? Is there any help ?