We can demonstrate Jacobi's method by this 4×4 matrix problem. We assume a guess for the vector elements x(0)i, a guess which represents our first iteration. The new values are obtained by substitution x(1)1=(b1−a12x(0)2−a13x(0)3−a14x(0)4)/a11x(1)2=(b2−a21x(0)1−a23x(0)3−a24x(0)4)/a22x(1)3=(b3−a31x(0)1−a32x(0)2−a34x(0)4)/a33x(1)4=(b4−a41x(0)1−a42x(0)2−a43x(0)3)/a44, which after k+1 iterations reads x(k+1)1=(b1−a12x(k)2−a13x(k)3−a14x(k)4)/a11x(k+1)2=(b2−a21x(k)1−a23x(k)3−a24x(k)4)/a22x(k+1)3=(b3−a31x(k)1−a32x(k)2−a34x(k)4)/a33x(k+1)4=(b4−a41x(k)1−a42x(k)2−a43x(k)3)/a44,