Find the Rank [[3,1,0],[2,1,-4],[2,-1,20]]
Problem
Solution
Set up the matrix
A representing the given system.
Perform row operations to create a leading
1 in the first row by subtracting the second row from the first ((R_1)→(R_1)−(R_2) .
Eliminate the entries below the first pivot by performing
(R_2)→(R_2)−2*(R_1) and(R_3)→(R_3)−2*(R_1)
Eliminate the entry below the second pivot by performing
(R_3)→(R_3)+(R_2)
Identify the number of non-zero rows in the row-echelon form. Since there are two non-zero rows, the rank is
2
Final Answer
Want more problems? Check here!