Problems from Rank of a matrix: Gaussian method

Create a 4×4 matrix, with the peculiarity that one of its rows is a linear combination of the other 3. Calculate the rank of the matrix.

See development and solution

Development:

We create the 4×4 matrix: A=(1010021211110113) As we can see r4=r1+r2+r3.

Let's calculate the rank.

The first thing is to remove the linear row combination of others, that is, remove row 4.

-Obviously there is nonempty submatrix 1×1 (all nonzero elements are).

-Are there any nonempty 2×2 submatrix? Yes |1002|=20

-Are there any nonempty 3×3 submatrixes? Yes |101021111|=10

|010212111|=22=40

As the 4×4 matrix is empty (the row 4 is a linear combination of the other 3 rows) the order of the biggest nonempty square submatrix is 3.

Therefore, rank(A)=3.

Solution:

(1010021211110113)

rank(A)=3

Hide solution and development
View theory