Find Reduced Row Echelon Form [[1,0,-3,8],[2,2,9,7],[0,1,5,-2]]
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 performing the row operation
(R_2)−2*(R_1)⇒(R_2)
Swap the second and third rows (
(R_2)⇔(R_3) to obtain a1 in the second pivot position.
Eliminate the entry below the second pivot by performing the row operation
(R_3)−2*(R_2)⇒(R_3)
Normalize the third row by dividing by
5 (1/5*(R_3)⇒(R_3) to create the third pivot.
Eliminate the entries above the third pivot by performing
(R_2)−5*(R_3)⇒(R_2) and(R_1)+3*(R_3)⇒(R_1)
Final Answer
Want more problems? Check here!