Examples
EXAMPLE 1. Apply row operations to reduce the following matrix to an echelon form.
EXAMPLE 2. Apply row operations to transform the following matrix first into an echelon form, and then reduce it into the reduced echelon form.
Matlab/Octave. Matlab/Octave comes with a rref function for row reducing matrices. Provided an augmented matrix A, type
> rref(A)
which produces a REF. The function
> rank(A)
can be called to compute the rank of matrix A.
© TTU Mathematics