Find the Rank [[i+1,2,1,-i],[1,i,2i,2]]
Problem
Solution
Write the matrix
A and identify its dimensions.
The matrix has 2 rows and 4 columns, so the maximum possible rank is 2.
Swap the rows to place a simpler entry in the first row, first column position.
Eliminate the first entry of the second row by performing the row operation
(R_2)→(R_2)−(i+1)*(R_1)
Analyze the resulting matrix in row-echelon form.
The second row is not a row of zeros because
Count the non-zero rows to determine the rank.
There are 2 linearly independent rows.
Final Answer
Want more problems? Check here!