Find Reduced Row Echelon Form
Problem
Solution
Represent the system as an augmented matrix.
Eliminate the first entries in the second and third rows by performing
(R_2)−4*(R_1)⇒(R_2) and(R_3)−2*(R_1)⇒(R_3)
Simplify the third row by dividing by 3 (
(R_3)/3⇒(R_3) and then swap it with the second row ((R_2)↔(R_3) to create a simpler pivot.
Eliminate the entry below the second pivot by performing
(R_3)−9*(R_2)⇒(R_3)
Normalize the third row by dividing by -4 (
(R_3)/−4⇒(R_3) .
Eliminate the entries above the third pivot by performing
(R_2)+(R_3)⇒(R_2) and(R_1)−3*(R_3)⇒(R_1)
Eliminate the entry above the second pivot by performing
(R_1)+2*(R_2)⇒(R_1)
Final Answer
Want more problems? Check here!