Find the Rank [[1,2,3],[4,5,6],[7,8,9]]
Problem
Solution
Write the matrix and prepare for row reduction to find the number of non-zero rows in row-echelon form.
Eliminate the first column entries below the first pivot by performing the row operations
(R_2)→(R_2)−4*(R_1) and(R_3)→(R_3)−7*(R_1)
Simplify the second row by dividing
(R_2) by−3 to create a leading 1.
Eliminate the second column entry below the second pivot by performing the row operation
(R_3)→(R_3)+6*(R_2)
Identify the rank by counting the number of non-zero rows in the resulting row-echelon form. There are 2 non-zero rows.
Final Answer
Want more problems? Check here!