Input: An matrix () Output: A matrix in Echelon Form equivalent to

Process

  1. Check for zero rows. If the rows for are all zeroes, then we’re done
  2. Otherwise, find the first non-zero coeff. find the with the smallest and
    1. Divide out by applying the operation
    2. Exchange and by applying operation
    3. Clear the column th column using operation
  3. Run the elimination algorithm on

This process is based off the Every Linear System Has A Row-Echelon Form Theorem