GaussianElimination.md (406B)
1 # Gaussian Elimination (row reduction) 2 3 Khan U1 4 5 **Definition:** Gaussian elimination is the process of simplifying a system of equations to [ReducedRowEchelonForm](ReducedRowEchelonForm.md) to solve the system. 6 7 Basically, we perform row operations on an augmented matrix to get RREF. We then find the values of the x, y, and z components and that is our solution. 8 9 See also [CramersRule](CramersRule.md)