Find the Rank [[1,2,-1],[-1,4,1],[0,6,0]]
Problem
Solution
Set up the matrix
A for row reduction.
Eliminate the first element of the second row by adding the first row to the second row (
(R_2)←(R_2)+(R_1) .
Eliminate the second row's duplicate by subtracting the second row from the third row (
(R_3)←(R_3)−(R_2) .
Identify the number of non-zero rows in the row echelon form to determine the rank.
Final Answer
Want more problems? Check here!