SYSTEM SOLVERS
Solving . Gaussian Elimination, Row Reduction, and the algorithm of absolute truth.
01 // The Setup
We don't solve systems of equations by juggling variables anymore. We detach the coefficients and put them into an Augmented Matrix, treating the entire system as a singular object.
02 // The Toolset
Exchange any two rows. Changing the order of information does not change the truth.
Multiply a row by a non-zero number. Used to turn the leading pivot number into a 1.
Add a multiple of one row to another. Used to destroy variables (turning them into a 0).
03 // The Execution
RREF Target
The algorithm is complete when you achieve the Identity Matrix on the left side of the augment. The numbers remaining on the right side are your final answers. Step through the lab below to watch Gaussian Elimination in real-time.
Gaussian Elimination Engine
The Starting Matrix
We extract the coefficients into an augmented matrix.
Systems Solved
You are ready to command N-dimensional space.