Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please write python code file to solve, Thank you! c) Write a function defined as: lef Gauss Seidel (Aaug, x, Niter = 15): Purpose: use

Please write python code file to solve, Thank you!

image text in transcribed

c) Write a function defined as: lef Gauss Seidel (Aaug, x, Niter = 15): Purpose: use the Gauss-Seidel method to estimate the solution to a set of N linear equations expressed in matrix form as Ax = b. Both A and b are contained in the function argument - Aaug. Aaug: an augmented matrix containing [Ab] having N rows and N+1 columns, where N is the number of equations in the set. X: a vector (array) contain the values of the initial guess Niter the number of iterations (new x vectors) to compute return value the final new x vector. Write and call a main() function that uses your Gauss Seidel function to estimate and print the solution to the sets of linear equations contained in the following Augmented A-matrices: MyA= [[4,-1,-1, 3), [-2, -3, 1,9], [-1, 1, 7,-6]] using initial guesses of all zeros. Perform 22 iterations. anotherA = [[4, 3, 1,-1, 2], [2,-5, 0, -2, -3] (-3, 3, -6, 1, 5], [0, 1, 4, 8, -2]] using initial guesses of all zeros. Perform 3 iterations

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Current Trends In Database Technology Edbt 2006 Edbt 2006 Workshops Phd Datax Iidb Iiha Icsnw Qlqp Pim Parma And Reactivity On The Web Munich Germany March 2006 Revised Selected Papers Lncs 4254

Authors: Torsten Grust ,Hagen Hopfner ,Arantza Illarramendi ,Stefan Jablonski ,Marco Mesiti ,Sascha Muller ,Paula-Lavinia Patranjan ,Kai-Uwe Sattler ,Myra Spiliopoulou ,Jef Wijsen

2006th Edition

3540467882, 978-3540467885

More Books

Students also viewed these Databases questions

Question

What are the classifications of Bank?

Answered: 1 week ago