Wed May 21 22:33:37 2025 gauss_seidel_test R version 4.1.2 (2021-11-01) gauss_seidel uses Gauss Seidel iteration to solve a linear system. The matrix A: [,1] [,2] [,3] [1,] 5 2 3 [2,] 2 7 4 [3,] 1 3 8 The right hand side b: [1] 40 39 55 The computed solution x: [1] 4 1 6 The product A*x: [,1] [1,] 40 [2,] 39 [3,] 55 gauss_seidel_test Normal end of execution. Wed May 21 22:33:37 2025