Find Reduced Row Echelon Form
Problem
Solution
Identify the initial matrix
A
Eliminate the first entry in the third row by performing the row operation
(R_3)←(R_3)−(R_1)
Eliminate the second entry in the third row by performing
(R_3)←(R_3)+(R_2)
Eliminate the third entry in the fourth row by performing
(R_4)←(R_4)+(R_3)
Normalize the third row by multiplying by
−1 ((R_3)←−1⋅(R_3) .
Eliminate entries above the pivot in the fourth column by performing
(R_3)←(R_3)+(R_4)
Eliminate entries above the pivot in the third column by performing
(R_1)←(R_1)−(R_3)
Eliminate entries above the pivot in the second column by performing
(R_1)←(R_1)−(R_2)
Final Answer
Want more problems? Check here!