Find the Rank
Problem
Solution
Represent the matrix
A and swap rows to place a leading 1 in the first row. Swap(R_1) and(R_4)
Eliminate the first column entries below the pivot. Perform
(R_2)→(R_2)−2*(R_1) and(R_5)→(R_5)−(R_1)
Eliminate the second column entries below the pivot in
(R_2) Perform(R_3)→(R_3)+(R_2) (R_4)→(R_4)−3*(R_2) and(R_5)→(R_5)−3*(R_2)
Normalize the third row by performing
(R_3)→1/2*(R_3)
Eliminate the third column entries below the pivot in
(R_3) Perform(R_4)→(R_4)+2*(R_3) and(R_5)→(R_5)+5*(R_3)
Eliminate the fourth column entry below the pivot in
(R_4) Perform(R_5)→(R_5)+(R_4)
Identify the number of non-zero rows in the row echelon form. There are 5 non-zero rows.
Final Answer
Want more problems? Check here!