2

Where should one look for results of the following form: How large can $f(n)$ be so that

$$\Pr_{A\sim[-1,1]^{f(n)\times n}}[\text{rank}(A)<n]\geqslant\text{constant } ?$$

What about the sample space $\,[0,1]^{f(n) \times n}\;?$

I have found some answers on Stack Exchange for random matrices over finite fields, but didn't find anything for reals.

Angelo
  • 13,952

1 Answers1

3

The space of rank-deficient matrices has measure 0. Just think about random diagonal matrices, what's the probability that one of the diagonal entries will be exactly zero?

It's safe to restrict attention to diagonal matrices because the set of non-diagonalizable has measure 0 (proof). So any matrix you randomly pick is bound to be diagonal in some basis.

The issue with rank of a given real-valued matrix is that you typically can't compute it. In floating point precision you can't tell between floating point number that's exactly zero, and almost zero. Hence people use variations of "numeric rank" that are possible to compute.

The idea is to do a "weighted count" of non-zero eigenvalues. Smaller eigenvalues are down-weighted.

Two such "effective rank" measures are below -- $R$ and $r$ from Bartlett paper. They give slightly different ways of partially counting small eigenvalues which are close to zero. $r$ is also called "intrinsic dimension" by Tropp

$$r=\frac{\operatorname{Tr}A}{\|A\|}$$

$$R=\frac{\operatorname{Tr}A}{\operatorname{Tr}A^T A}$$

If you assume matrix unit trace and consider its vector of eigenvalues $\lambda$ , this two rank measures correspond to $1/\|\lambda\|_\infty$ and $1/\|\lambda\|_2^2$ and they are related like this

For $A$ of the form $X^TX$ with IID Gaussian distributed rows of $X$, $A$ follows Wishart distribution, and you can estimate mean effective rank $R$ like this and use similar principles to get the distribution.

For rank $r$, Tracy-Widom distribution may be relevant, also see this overview.

  • Thank you. I will accept your answer if there are no other answers with more details on why "space of rank-deficient matrices have measure zero". I have upvoted for now. – Mathews Boban Mar 24 '23 at 17:49
  • 1
    To prove it, look at distribution of diagonal matrices. Rank deficient means one of the diagonal entries is exactly zero. What's the probability of that? It's same as probability of having an exact 0 in a random vector. It's zero probability when entries are real valued and random – Yaroslav Bulatov Mar 24 '23 at 17:58
  • Great! Accepted the answer. – Mathews Boban Mar 24 '23 at 18:14