One column vector $a_k$ of a full rank matrix $A \in \mathbb{R}^{m\times n}$ is replaced by some other vector $a'_k$ leading to $A'$. This can increase/decrease the smallest/largest singular value of $A'$ compared to $A$.
- If replacement increases the smallest singular value, how does $a'_k$ relate geometrically to the columns of $A$?
- If replacement decreases the largest singular value, how does $a'_k$ relate geometrically to the columns of $A$?
Background
Let $A \in \mathbb{R}^{m\times n}$ with $m\leq n$ be a matrix of full rank, then its smallest singular value $$\sigma_{min}(A) > 0$$ as the number of non-zero singular values of A is equal to $rank(A)$. Also, the column vectors $a_i \in \mathbb{R}^m$ of $A=[a_1, …, a_n]$ span $\mathbb{R}^m$.
If I change one column $a_k$ of $a$ with $k \in {1, …, n}$ to some other $a'_k$, I get a new matrix $$A' = [a_1, …, a_{k-1}, a'_k, a_{k+1},…, a_n].$$ This changing of vectors can of course be repeated and $a'_k$ or any other column of $A'$ replaced by some new vector $a''_i$.
If one or more columns of $A$ are changed such that $A'^{\cdots}{}'$ becomes rank-deficient and its smallest singular value turns to zero, the columns of the changed matrix no longer span $\mathbb{R}^m$ whereas the kernel of $A$ "gains one dimension".
It appears to me that that implies that the column vectors of $A'^{\cdots}{}'$ are all points in an $(m-1)$-dimensional plane in $\mathbb{R}^m$ that includes the origin. So as the smallest singular value of the matrix decreases, I assume the point cloud of its column vectors becomes "flatter".
Questions
So it appears to me that if the singular value increases by replacing $a_k$ by $a'_k$, the point cloud of the column vectors becomes "less flat" and the columns of $A'$ (excuse my expression) "span $\mathbb{R}^m$ better". Is that true? And if so, how do you say "span better" mathematically? Cause they either span or don't span, there is not really a "span better or worse"... So the question is: If the smallest singular value had increased by replacing one column, what kind of move/change in the point cloud is associated with it?
Related to that: The condition number of solving a linear system of equations $Ax=b$ is $\kappa = \frac{\sigma_{max}(A)}{\sigma_{min}(A)}$. To have a well-conditioned problem, the $\kappa$ is desired to be small. Does that somehow mean that the point cloud needs to "become less flat" in order to decrease the maximum singular value of the matrix by replacing the column?
Research
The change of singular values when adding vectors have been discussed e.g. here and here. However I am not wondering about adding a vector to $A$, but replacing a vector in $A$ maintaining the original size of $A$.