Questions: Jacobi Iterative Method

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

During a Jacobi iteration sweep, component x₁^(k+1) has just been computed. When computing x₂^(k+1), which value of x₁ is used?

AThe freshly computed x₁^(k+1) from this sweep
BThe old value x₁^(k) from the previous iteration
CThe average of x₁^(k) and x₁^(k+1)
DWhichever value accelerates convergence
Question 2 Multiple Choice

A linear system Ax = b has a coefficient matrix A where each diagonal entry is strictly larger in magnitude than the sum of the absolute values of all other entries in its row. What can you conclude about Jacobi iteration on this system?

AJacobi will diverge because the diagonal dominates and suppresses off-diagonal corrections
BJacobi is guaranteed to converge because A is diagonally dominant
CConvergence cannot be determined without computing the spectral radius explicitly
DJacobi will converge only if A is also symmetric
Question 3 True / False

The Jacobi method can be parallelized more easily than Gauss-Seidel because all component updates within a single sweep are independent of each other.

TTrue
FFalse
Question 4 True / False

If the Jacobi method fails to converge for a given linear system, then Gauss-Seidel will also fail to converge on the same system.

TTrue
FFalse
Question 5 Short Answer

Why does the Jacobi method use only values from the previous iteration when computing updates, and what practical advantage does this 'all-old' rule provide?

Think about your answer, then reveal below.