Answer the following questions by explaining which program you can use to solve each question, how you prepare the arguments for the program and what is command to use.
Q1: Consider the following set of equations.
\begin{align*} 10x_1 - x_2 + 2x_3 &= 6 \ -x_1 + 11x_2 - x_3 + 3x_4 &= 25 \ 2x_1 - x_2 + 10x_3 - x_4 &= -11 \ 3x_2 - x_3 + 8x_4 &= 15 \end{align*} Explain which program (Iterative Method) you can use for solving the above system.
Use a precision of $10^{-4}$ and start with $x^{(0)} = (0,0,0,0)$
A) Newton Method
B) Gauss Elimination
C) Gauss-Seidel Method
D) Bisection