Gaussian Elimination

This page implements Gaussian Elimination to solve a system of equations.

You can solve a system of equations like this:

x + 2y - z = 3

2x + y - 2z = 3

-3x + y + z = -6

Solution: [      ]

Zero pivot, infinite solutions, or no solution.

View the JavaScript code