Texts: MATLAB CODE solve 5-7. Please do not submit a 3x3 matrix in Python, that is not what the question is asking.
4. Set up a verification example using a 3x3 system of equations (you may use the system we discussed in class or make up your own). Make sure that your code works correctly.
5. Now solve the above system of equations using Gauss-Seidel iteration, using an initial guess x1 = 75 for i = 1, 2, ..., N. Set the iterative convergence criterion and the residual norm criterion to e = 10 and δ = 10. Find:
a. The solution vector.
b. The number of iterations to convergence.
c. Plot the residual norm using the L-norm versus the number of iterations.
d. Report the requested values in the Webcourses Project 4 Assignment Quiz.
6. Incorporate SOR into your Gauss-Seidel routine and repeat with relaxation parameters ω = 1.1, 1.2, 1.3, 1.4, 1.5, and 1.6. Plot the residual norm versus iteration for the values of the relaxation parameter on the same plot.
7. Plot the number of iterations to convergence versus ω for values of ω = 1.1, 1.2, and 1.9. Report the values in the Webcourses Project 4 Assignment Quiz.