Find the Rank [[5,9,3],[3,5,6],[1,5,3]]
Problem
Solution
Set up the matrix
A and prepare for row reduction to find the number of non-zero rows in row-echelon form.
Swap the first and third rows to obtain a leading
1 in the first row.
Eliminate the first entries of the second and third rows using the first row.
Simplify the second row by dividing by
−10 to create a leading1
Eliminate the second entry of the third row using the second row.
Identify the number of non-zero rows. Since there are three rows with non-zero entries, the matrix is of full rank.
Final Answer
Want more problems? Check here!