Suppose I have a matrix where each successive row is a left-shift of the previous row (with a new value coming in on the right), e.g.,
$$A = \begin{bmatrix} 1 & 2\\ 2&3\\ 3&4 \end{bmatrix}$$
Observe that each square subset of this matrix is symmetric. I was wondering if for a general $m \times n$, where $m \gg n$, matrix $A$ with this shifting property we could prove a lower bound on the minimum singular value that is dependent on $m$, such that all the values are roughly similar with high probability, say they are normally distributed.
I've looked at lower bounds but they often restrict to the minimum singular value of a square matrix contained within $A$, such as Singular value inequality for block matrices
I've done some simulations and I see that the the minimum singular value increases with the number of rows $m$, which I expected, given Changes in singular values of matrix when rows are added. (this link is exactly what I want, but if only it were some sort of strict inequality I could prove WHP) Is there any sort of theoretical way to prove this? Any help would be appreciated, even just recommendations on what textbooks to look at, since this kind of linear algebra material wasn't covered in any of the undergrad courses I took.