Row operations in matrices of vectors.

590 Views Asked by At

In cases where linear dependency or independency of some number of vectors is to be found out, one of the methods is to form a matrix of the vectors of dimensions m×n where the column represents the coordinates of a specific vector and the row represents the coordinates of all the vectors along a specific dimension .This is then multiplied with a coefficient matrix and then equated to 0. Solving such problems involve converting the matrix into its row echelon form via row operations. My question here is,why exactly can we perform row operations on the matrix?It is not like we are multiplying one vector with some scalar and add (or subtracting) which is usually the procedure without using matrices.It is like multiplying coordinates of all vectors along specific dimension with some scalar and performing operations on coordinates of all the vectors along other dimension.This is what is shown in my textbook.why does this work?

1

There are 1 best solutions below

4
On

The operations are equivalent to multiplying by elementary matrices which are invertible. Therefore, if E is an elementary matrix, $$ A\cdot\vec{v} = \vec{b} \iff E \cdot A\cdot\vec{v} = E \cdot \vec{b} $$

because we can go back by multiplying by $E^{-1}$, and thus the original system is equivalent to the last one which is multiplied by $E$. Repeating this process by multiplying by different elementary matrices leaves us with an upper-triangular matrix which is equivalent to the original.

Esentially, when checking if a vector set is linearly independent, you're searching for non-trivial linear combinations of these vectors that equal zero, which we can compactly express as "does $A\cdot v = \vec{0}$ has non-zero solutions?" where $A$ is a matrix that has the vectors as columns.