Find the Rank [[0,1,2],[3,4,5],[6,7,8]]
Problem
Solution
Write the matrix and identify the goal to find the number of linearly independent rows or columns using Gaussian elimination.
Swap rows to place a non-zero element in the first pivot position (row 1, column 1). Swap
(R_1) and(R_2)
Eliminate the entry in the third row, first column by performing the row operation
(R_3)→(R_3)−2*(R_1)
Eliminate the entry in the third row, second column by performing the row operation
(R_3)→(R_3)+(R_2)
Identify the rank by counting the number of non-zero rows in the row echelon form. There are 2 non-zero rows.
Final Answer
Want more problems? Check here!