Find the Rank [[6,8,9],[3,5,7],[9,4,2]]
Problem
Solution
Set up the matrix
A
Swap the first and second rows (
(R_1)↔(R_2) to get a smaller leading entry in the first row.
Eliminate the first entries of the second and third rows by performing
(R_2)−2*(R_1)→(R_2) and(R_3)−3*(R_1)→(R_3)
Eliminate the second entry of the third row by performing
(R_3)−11/2*(R_2)→(R_3)
Identify the number of non-zero rows in the row-echelon form. Since there are 3 non-zero rows, the rank is 3.
Final Answer
Want more problems? Check here!