Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write python functions from scratch to solve system of linear equations using following iterative methods: a) Jacobi's Iterative Method b) Gauss Seidel Method c) Successive
Write python functions from scratch to solve system of linear equations using following iterative methods: a) Jacobi's Iterative Method b) Gauss Seidel Method c) Successive Over Relaxation Method Your implementation should be general to handle any number of equations and any number of variables. Check your implementation on the following test problem: 2.412x+9.879y+1.564z=4.891.876x+2.985y11.62z=0.97212.214x+2.367y+3.672z=7.814 Compare the number of iterations required until convergence using above methods (use error tolerance of 105 ). Also draw the convergence plot for each method
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started