Any $m\times n$ matrix has a singular value decomposition, $$A = USV^T\text{,}$$ where $A$ is $m\times n$ matrix, and its singular values are $(\sigma_1,...,\sigma_m)$. There is a method to judge how singular $A$ is by computing the ratio of the largest singular value $\sigma_i$ to smallest singular value $\sigma_j$, $$c = \frac{\sigma_i}{\sigma_j}\text{.}$$ AFAIK, if $A$ is a square matrix, then $A$ is singular if and only if $\det(A) = 0$, which means it's not invertible, and if $A$ is not square, $A$ is singular if it has $zero$ singular values.
So, how could the ratio $c$ be used to judge how singular $A$ is? If $c = \infty$, it is singular?