General Linear Equations Solver
Posted: Tue Mar 24, 2026 10:48 am
Solves linear equations using Gaussian elimination
Example input for the system:
2x + y - z = 8
-3x - y + 2z = -11
-2x + y + 2z = -3
you would enter:
N = 3
Row 1: 2 1 -1 8
Row 2: -3 -1 2 -11
Row 3: -2 1 2 -3
Example input for the system:
2x + y - z = 8
-3x - y + 2z = -11
-2x + y + 2z = -3
you would enter:
N = 3
Row 1: 2 1 -1 8
Row 2: -3 -1 2 -11
Row 3: -2 1 2 -3