I'm working on problems from the third edition of "Linear Algebra Done Right" by Sheldon Axler. In Section 2.A there is the following problem (problem #6):
Suppose $v_1$, $v_2$, $v_3$, $v_4$ is linearly independent in $V$. Prove that the list $v_1-v_2,v_2-v_3,v_3-v_4,v_4$ is also linearly independent.
This begs the question: What is the general solution to this problem? In other words, given a list of m linearly independent vectors $v_1,...,v_m$, define $w_i\in$ span ($v_1,...,v_m$). What are the necessary and sufficient conditions so that $w_1,...,w_m$ is also linearly independent?
I feel uncomfortable with this problem because I can't see it clearly. It seems like its a hidden combinatorial exercise in this book. Linear Independence seems harder to verify the greater the value of $m$. I'm not even sure that my intuition is right and so I would appreciate any feedback.
The list $v_1,\dots,v_n$ is a basis of $U$, the subspace they span. So we can work in $U$ and consider $$ w_j=\sum_{i=1}^n \alpha_{ij}v_i \qquad(j=1,2,\dots,m) $$ Then the coordinate vector of $w_1$ with respect to the chosen basis is $$ \begin{bmatrix} \alpha_{11} \\ \alpha_{21} \\ \vdots \\ \alpha_{n1} \end{bmatrix} $$ and, more generally, the coordinate vector of $w_j$ is $$ \begin{bmatrix} \alpha_{1j} \\ \alpha_{2j} \\ \vdots \\ \alpha_{nj} \end{bmatrix} $$
A set of vectors is linearly independent if and only if the set of their coordinate vectors is. Thus the necessary and sufficient condition is that the matrix $[\alpha_{ij}]$ has rank $m$.
In your case the matrix is $$ \begin{bmatrix} 1 & 0 & 0 & 0 \\ -1 & 1 & 0 & 0 \\ 0 & -1 & 1 & 0 \\ 0 & 0 & -1 & 1 \end{bmatrix} $$ that indeed has rank $4$.