Find Reduced Row Echelon Form [[-8,1,4,-3],[2,1,-1,-3]]
Problem
Solution
Swap rows to place a smaller leading coefficient in the first row for easier calculation.
Eliminate the first entry of the second row 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 5 (
(R_2)←1/5*(R_2) .
Eliminate the entry above the second pivot by subtracting the second row from the first row (
(R_1)←(R_1)−(R_2) .
Normalize the first row by dividing it by 2 (
(R_1)←1/2*(R_1) to achieve the leading 1.
Final Answer
Want more problems? Check here!