I am just working through some exam practice questions and I would like to show that for non-negative integers, $m,n$,
$$x^{(m+n)}-x^{(m)} = S^m(I+S+...+S^{n-1})(x^{(1)}-x^{(0)})$$
in the Gauss-seidel iteration scheme.
I have that the scheme can be written in the form:
$x^{(m+1)} = c + Sx^{(m)}$, where $S$ is a matrix and $c$ a vector.
I have tried a few different approaches and I can't seem to get the above expression.
Using that
$x^{(m+n)} = c + Sx^{(m+n)-1}$ and $x^{(m)} = c + Sx^{(m-1)}$, I get:
$$x^{(m+n)}-x^{(m)} = c +Sx^{(m+n)-1} - c - Sx^{(m-1)} = S(x^{(m+n-1)}-x^{(m-1)})$$
Then repeating the process $m$ times, I get to:
$$x^{(m+n)}-x^{(m)} = S^{m}(x^{(n)}-x^{(0)})$$
Then I'm not sure how to proceed. I have tried other methods, but then I get stuck with getting rid of the vector $c$.
Any help would be greatly appreciated!