Find Reduced Row Echelon Form [[0,1,5,-4],[1,4,3,-2],[2,7,1,-2]]
Problem
Solution
Swap the first and second rows to place a leading
1 in the top-left corner.
Eliminate the
2 in the first column of the third row by subtracting twice the first row from the third row.
Eliminate the
−1 in the second column of the third row by adding the second row to the third row.
Normalize the third row by dividing it by
−2 to create a leading1
Eliminate the entries above the leading
1 in the fourth column by using the third row.
Eliminate the
4 in the second column of the first row by subtracting four times the second row from the first row.
Final Answer
Want more problems? Check here!