Find Reduced Row Echelon Form [[1,7,0],[0,1,8],[0,0,1]]
Problem
Solution
Identify the current state of the matrix. The matrix is already in row echelon form (REF) because it is upper triangular with ones on the main diagonal.
Eliminate the entry in the second row, third column. To create a zero at
(R_2),(C_3) perform the row operation(R_2)←(R_2)−8*(R_3)
Eliminate the entry in the first row, second column. To create a zero at
(R_1),(C_2) perform the row operation(R_1)←(R_1)−7*(R_2)
Final Answer
Want more problems? Check here!