Given: v1 = [2, −1, 2, 0], v2 = [1, 0, 1, 1], v3 = [3, −2, 3, −1], and v4 = [3, 1, 2, 4].
[2, −1, 2, 0]
[1, 0, 1, 1]
[3, −2, 3, −1]
[3, 1, 2, 4]
Can we just interchange R1 and R2 since the leading element, 1, of [1, 0, 1, 1] is just in the right position? Became something like this:
[1, 0, 1, 1]
[2, −1, 2, 0]
[3, −2, 3, −1]
[3, 1, 2, 4]
Yes, we can. If you think in terms of systems of equations, it corresponds to exchanging two of the equations. It changes nothing.