Find Reduced Row Echelon Form [[1,-5,-6,-1],[-4,13,10,-3]]
Problem
Solution
Identify the first pivot in the first row, which is already
1 in the first column.Eliminate the entry below the first pivot by adding
4 times the first row to the second row ((R_2)←(R_2)+4*(R_1) .
Normalize the second row by dividing it by
−7 to create a pivot of1 ((R_2)←−1/7*(R_2) .
Eliminate the entry above the second pivot by adding
5 times the second row to the first row ((R_1)←(R_1)+5*(R_2) .
Final Answer
Want more problems? Check here!