Find Reduced Row Echelon Form [[1000,5000,10000,99000],[2,1,0,26]]
Problem
Solution
Divide the first row by
1000 to create a leading1 in the first column.
Eliminate the
2 in the second row by subtracting2 times the first row from the second row ((R_2)←(R_2)−2*(R_1) .
Divide the second row by
−9 to create a leading1 in the second column.
Eliminate the
5 in the first row by subtracting5 times the second row from the first row ((R_1)←(R_1)−5*(R_2) .
Construct the final reduced row echelon form matrix.
Final Answer
Want more problems? Check here!