Perform Gaussian-Jordan elimination on any augmented matrix. Instantly compute Reduced Row Echelon Form (RREF), rank, consistency, and full solution sets — unique, parametric, or inconsistent.
Represent the linear system Ax = b: each row corresponds to an equation, last column is the right-hand side constant. Use spaces or commas to separate numbers.
An augmented matrix compactly represents a system of linear equations. Our calculator reduces it to Reduced Row Echelon Form (RREF) — a canonical form where each leading coefficient is 1 and is the only nonzero in its column. From RREF, the nature of solutions becomes transparent: unique solutions, free variables (infinite families), or inconsistency.
The method also reveals the rank (number of independent rows/equations). Comparing the rank of the coefficient matrix with the rank of the augmented matrix immediately determines consistency. This calculator handles floating-point rounding with tolerance to detect near-singular cases.
Engineers solve large systems of Kirchhoff's laws using augmented matrix methods. For a 3-loop circuit with mesh currents, the system may be expressed as RI = V. Using Gaussian elimination on the augmented matrix [R|V] yields currents with high precision. Our tool emulates that process, ideal for academic projects and professional simulation pre-checks.
| Condition | Solution Type | RREF Pattern |
|---|---|---|
| rank(A) = rank([A|b]) = n (variables) | Unique solution | Identity submatrix in coefficient part |
| rank(A) = rank([A|b]) < n | Infinite solutions (parametric) | Free columns correspond to parameters |
| rank(A) < rank([A|b]) | No solution (inconsistent) | Row with zeros in coefficient but nonzero RHS |