Question: Use Python. Do not use numpy. Write a function defined as: def GaussJacobi(Aaug, x, xtol = 1e-6, maxiter = 50): Purpose: use the Gauss-Jacobi method

Use Python. Do not use numpy.
Write a function defined as: def GaussJacobi(Aaug, x, xtol = 1e-6, maxiter = 50): Purpose: use the Gauss-Jacobi method to estimate the solution to a set of N linear equations expressed in matrix form as A x = b. Aaug: an augmented matrix contining [A|b] having N rows and N + 1 columns x: a vector (array) contain the values of the initial guess xtol: exit when the modified |xnew - xold|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
