Sorry; it's just that viewing uploaded PDFs is not something I see as inconvenient, so I tend to forget that not everyone feels the same.
Also, the videos were uploaded as background information; I wasn't expecting anyone to watch them in full (unless desired).
It looks better in the PDF file, but here's the problem statement and its solution, typed out.:
Problem statement:
Carry out the first three iterations of the solution of the following system of equations using the GaussSeidel iterative method. For the first guess of the solution, take the value of all the unknowns to be zero.
##8 x_1 + 2x_2 + 3x_3 = 51##
##2x_1 + 5x_2 + x_3 = 23##
##-3x_1 + x_2 + 6x_3 = 20##
Solution:
The essence of the Gauss-Seidel iterative method is given by x_1 = 1/a_(ii) [b_i - SIGMA j = 1, j != 1 to j = n of a_(ij) x_j], i = 1, 2, . . ., n
First Iteration:
Starting with [x_1^(0) x_2^(0) x_3^(0) = [0 0 0], x_1^(1) = [51 - 2(0) - 3(0)]/8 = 6.375, x_2^(1) = [23 - 2(0) - 0]/5 = 4.6, and x_3^(1) = [20 + 3(0) - 0]/6 = 3.3333.
Second Iteration:
x_1^(0) = [51 - 2(4.6) - 3(3.3333)]/8 = 3.9750, x_2^(2) = [23 - 2(6.375) - 3.3333]/5 = 6.9167, and x_3^(2 -- in the PDF this is a 1, instead of a 2, but I think that it's a mistake) = [20 + 3(6.375) - 4.6]/6 = 5.7542.
Third Iteration:
x_1^(3) = [51 - 2(6.9167) - 3(5.7542)]/8 = 2.488, x_2^(3-- in the PDF this is a 2, instead of a 3, but I think that it's a mistake) = [23 - 2(3.9750) - 5.7542]/5 = 1.8592, and x_3^(3 -- in the PDF this is a 1, instead of a 3, but I think that it's a mistake) = [20 + 3(3.9750) - 6.9167]/6 = 4.1681.
So, am I correct in thinking that the solution of the problem statement in the PDF (not a problem from a video -- the videos were just background information) is using the Jacobi method, despite the question asking for the Gauss-Seidel method to be used?