Find Reduced Row Echelon Form [[-1,5],[0,0]]
Problem
Solution
Identify the first non-zero entry in the first row, which is
−1 This will be the location of our first pivot.Normalize the first row by multiplying it by
−1 to make the leading coefficient equal to1
Check the remaining rows. The second row is already all zeros, so no further row operations are required to create zeros below the pivot.
Verify that the matrix satisfies the conditions for Reduced Row Echelon Form: the first non-zero entry in each row is
1 and it is the only non-zero entry in its column.
Final Answer
Want more problems? Check here!