Simultaneous Equations Solver (3×3)

Three equations, three unknowns, solved by Gaussian elimination with partial pivoting — and classified properly when there is no single answer. That last part is where most solvers give up. A zero determinant is usually reported as "no solution", which is wrong half the time: it means the system ha...

A zero determinant does not mean there is no solution. It means there is either no solution or an infinity of them, and only the constants decide which. This solver compares the rank of the coefficients with the rank of the full augmented system and says which case you have, rather than reporting a failure.

THE SYSTEM

x+y+z=
x+y+z=
x+y+z=

EXACTLY ONE SOLUTION

x

2

y

3

z

-1

Determinant -1, so the three planes meet at a single point. Substituted back into the equations as typed, the largest discrepancy is 8.88e-16 — which is rounding, not error.

CheckLeft sideRight sideDifference
Equation 1880
Equation 2-11-110
Equation 3-3-38.9e-16

THE WORKING

ELIMINATION, STEP 1 OF 6The augmented matrix as entered21-18-3-12-11-212-3xyz=each step subtracts a multiple of one row from another — the solutions never change

Rows are swapped to put the largest number on the diagonal. That is not tidiness — dividing by a small pivot amplifies rounding error, and choosing the largest available keeps the arithmetic stable. It is the difference between a method that works on paper and one that works on a machine.

THE ANSWER PUT BACK INTO THE EQUATIONS YOU TYPEDa check against the original equations, not against the reduced ones

Gaussian elimination with partial pivoting · live calculation

Created with❤️byeaglecalculator.com

HOW TO USE

  1. 1

    Enter the nine coefficients and the three constants. A missing term is a zero — write it in rather than leaving the box empty.

  2. 2

    Read the classification before the numbers. Exactly one solution, infinitely many, or none: the three cases mean very different things and only the first gives you values to use.

  3. 3

    Check the verification table. It substitutes the answer back into the equations exactly as you typed them, which catches a mistyped coefficient in a way the solver itself cannot.

  4. 4

    Take the ill-conditioning warning seriously if it appears. It means the arithmetic is fine and the answer is fragile, which is a different problem and a more dangerous one.

FREQUENTLY ASKED QUESTIONS

RELATED CALCULATORS

MORE ALGEBRA CALCULATORS

Was this calculator helpful?

Last updated: August 2, 2026 · Gaussian elimination with partial pivoting · A zero determinant means no solution or infinitely many, and the ranks decide which.